|
@@ -6,6 +6,13 @@
|
|
|
/* globals console, window, document */
|
|
/* globals console, window, document */
|
|
|
|
|
|
|
|
import ClassicEditor from '/ckeditor5/editor-classic/classic.js';
|
|
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 Bold from '/ckeditor5/basic-styles/bold.js';
|
|
|
|
|
+import Italic from '/ckeditor5/basic-styles/italic.js';
|
|
|
import { getData } from '/ckeditor5/engine/dev-utils/model.js';
|
|
import { getData } from '/ckeditor5/engine/dev-utils/model.js';
|
|
|
|
|
|
|
|
window.setInterval( function() {
|
|
window.setInterval( function() {
|
|
@@ -13,7 +20,7 @@ window.setInterval( function() {
|
|
|
}, 3000 );
|
|
}, 3000 );
|
|
|
|
|
|
|
|
ClassicEditor.create( document.querySelector( '#editor' ), {
|
|
ClassicEditor.create( document.querySelector( '#editor' ), {
|
|
|
- features: [ 'enter', 'typing', 'paragraph', 'undo', 'basic-styles/bold', 'basic-styles/italic', 'heading' ],
|
|
|
|
|
|
|
+ features: [ Enter, Typing, Paragraph, Undo, Bold, Italic, Heading ],
|
|
|
toolbar: [ 'headings', 'bold', 'italic', 'undo', 'redo' ]
|
|
toolbar: [ 'headings', 'bold', 'italic', 'undo', 'redo' ]
|
|
|
} )
|
|
} )
|
|
|
.then( editor => {
|
|
.then( editor => {
|