| 1234567891011121314151617181920212223242526272829 |
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* globals console, window, document */
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import EasyImage from '../../src/easyimage';
- import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
- import { CS_CONFIG } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
- ClassicEditor
- .create( document.querySelector( '#editor' ), {
- cloudServices: CS_CONFIG,
- plugins: [ ArticlePluginSet, EasyImage ],
- toolbar: [ 'headings', '|', 'undo', 'redo', 'uploadImage' ],
- image: {
- toolbar: [ 'imageStyleFull', 'imageStyleSide', '|', 'imageTextAlternative' ]
- }
- } )
- .then( editor => {
- window.editor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|