|
@@ -6,14 +6,11 @@
|
|
|
/* global document, console, window */
|
|
/* global document, console, window */
|
|
|
|
|
|
|
|
import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classic';
|
|
import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classic';
|
|
|
-import Enter from '@ckeditor/ckeditor5-enter/src/enter';
|
|
|
|
|
-import Typing from '@ckeditor/ckeditor5-typing/src/typing';
|
|
|
|
|
|
|
+import EssentialsPreset from '@ckeditor/ckeditor5-presets/src/essentials';
|
|
|
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
|
|
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
|
|
|
import Heading from '@ckeditor/ckeditor5-heading/src/heading';
|
|
import Heading from '@ckeditor/ckeditor5-heading/src/heading';
|
|
|
import Image from '../../src/image';
|
|
import Image from '../../src/image';
|
|
|
import ImageCaption from '../../src/imagecaption';
|
|
import ImageCaption from '../../src/imagecaption';
|
|
|
-import Undo from '@ckeditor/ckeditor5-undo/src/undo';
|
|
|
|
|
-import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard';
|
|
|
|
|
import ImageToolbar from '../../src/imagetoolbar';
|
|
import ImageToolbar from '../../src/imagetoolbar';
|
|
|
import ImageStyle from '../../src/imagestyle';
|
|
import ImageStyle from '../../src/imagestyle';
|
|
|
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
|
|
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
|
|
@@ -22,17 +19,18 @@ import List from '@ckeditor/ckeditor5-list/src/list';
|
|
|
|
|
|
|
|
ClassicEditor.create( document.querySelector( '#editor' ), {
|
|
ClassicEditor.create( document.querySelector( '#editor' ), {
|
|
|
plugins: [
|
|
plugins: [
|
|
|
- Enter, Typing, Paragraph, Heading, Image, ImageToolbar,
|
|
|
|
|
- Undo, Clipboard, ImageCaption, ImageStyle, Bold, Italic, Heading, List
|
|
|
|
|
|
|
+ EssentialsPreset,
|
|
|
|
|
+ Paragraph, Heading, Image, ImageToolbar,
|
|
|
|
|
+ ImageCaption, ImageStyle, Bold, Italic, Heading, List
|
|
|
],
|
|
],
|
|
|
toolbar: [ 'headings', 'undo', 'redo', 'bold', 'italic', 'bulletedList', 'numberedList' ],
|
|
toolbar: [ 'headings', 'undo', 'redo', 'bold', 'italic', 'bulletedList', 'numberedList' ],
|
|
|
image: {
|
|
image: {
|
|
|
toolbar: [ 'imageStyleFull', 'imageStyleSide', '|' , 'imageTextAlternative' ]
|
|
toolbar: [ 'imageStyleFull', 'imageStyleSide', '|' , 'imageTextAlternative' ]
|
|
|
}
|
|
}
|
|
|
} )
|
|
} )
|
|
|
- .then( editor => {
|
|
|
|
|
- window.editor = editor;
|
|
|
|
|
- } )
|
|
|
|
|
- .catch( err => {
|
|
|
|
|
- console.error( err.stack );
|
|
|
|
|
- } );
|
|
|
|
|
|
|
+.then( editor => {
|
|
|
|
|
+ window.editor = editor;
|
|
|
|
|
+} )
|
|
|
|
|
+.catch( err => {
|
|
|
|
|
+ console.error( err.stack );
|
|
|
|
|
+} );
|