|
|
@@ -6,7 +6,7 @@
|
|
|
/* globals console:false, document, window */
|
|
|
|
|
|
import InlineEditor from '../../src/inlineeditor';
|
|
|
-import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
|
|
|
+import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
|
|
|
import testUtils from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
|
|
|
|
|
|
window.editors = {};
|
|
|
@@ -20,7 +20,7 @@ function initEditors() {
|
|
|
function init( selector ) {
|
|
|
InlineEditor
|
|
|
.create( document.querySelector( selector ), {
|
|
|
- plugins: [ ArticlePreset ],
|
|
|
+ plugins: [ ArticlePluginSet ],
|
|
|
toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
|
|
|
} )
|
|
|
.then( editor => {
|