|
|
@@ -6,9 +6,15 @@
|
|
|
/* globals console, window, document */
|
|
|
|
|
|
import ClassicEditor from '/ckeditor5/editor-classic/classic.js';
|
|
|
+import Enter from '/ckeditor5/enter/enter.js';
|
|
|
+import Typing from '/ckeditor5/typing/typing.js';
|
|
|
+import Heading from '/ckeditor5/heading/heading.js';
|
|
|
+import Paragraph from '/ckeditor5/paragraph/paragraph.js';
|
|
|
+import Undo from '/ckeditor5/undo/undo.js';
|
|
|
+import List from '/ckeditor5/list/list.js';
|
|
|
|
|
|
ClassicEditor.create( document.querySelector( '#editor' ), {
|
|
|
- features: [ 'enter', 'typing', 'heading', 'paragraph', 'undo', 'list' ],
|
|
|
+ features: [ Enter, Typing, Heading, Paragraph, Undo, List ],
|
|
|
toolbar: [ 'headings', 'bulletedList', 'numberedList', 'undo', 'redo' ]
|
|
|
} )
|
|
|
.then( editor => {
|