| 123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* globals document, window, console */
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import BalloonEditor from '@ckeditor/ckeditor5-editor-balloon/src/ballooneditor';
- import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
- import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough';
- import Code from '@ckeditor/ckeditor5-basic-styles/src/code';
- const config = {
- plugins: [ ArticlePluginSet, Strikethrough, Code ],
- toolbar: [ 'headings', '|', 'bold', 'italic', 'strikethrough', 'code', 'link', '|', 'undo', 'redo' ]
- };
- ClassicEditor
- .create( document.querySelector( '#editor-classic' ), config )
- .then( editor => {
- window.classicEditor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
- BalloonEditor
- .create( document.querySelector( '#editor-balloon' ), config )
- .then( editor => {
- window.balloonEditor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|