| 123456789101112131415161718192021222324 |
- /**
- * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* globals console, window, document */
- import InlineEditor from '@ckeditor/ckeditor5-editor-inline/src/inlineeditor';
- import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
- InlineEditor.create( document.querySelector( '#snippet-inline-editor' ), {
- plugins: [ ArticlePreset ],
- toolbar: [ 'headings', 'bold', 'italic', 'link', 'unlink', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
- image: {
- toolbar: [ 'imageStyleFull', 'imageStyleSide', '|', 'imageTextAlternative' ]
- }
- } )
- .then( editor => {
- window.editor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|