| 12345678910111213141516171819202122232425262728293031 |
- /**
- * @license Copyright (c) 2003-2017, 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 { TOKEN_URL } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
- ClassicEditor
- .create( document.querySelector( '#editor' ), {
- cloudServices: {
- tokenUrl: TOKEN_URL
- },
- plugins: [ ArticlePluginSet, EasyImage ],
- toolbar: [ 'headings', 'undo', 'redo', 'insertImage' ],
- image: {
- toolbar: [ 'imageStyleFull', 'imageStyleSide', '|', 'imageTextAlternative' ]
- }
- } )
- .then( editor => {
- window.editor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|