| 123456789101112131415161718192021222324 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* globals console, window, document */
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import Essentials from '../../src/essentials';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- // Note: We need to load paragraph because we don't have inline editors yet.
- ClassicEditor
- .create( document.querySelector( '#editor' ), {
- plugins: [ Essentials, Paragraph ],
- toolbar: [ 'undo', 'redo' ]
- } )
- .then( editor => {
- window.editor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|