|
|
@@ -0,0 +1,32 @@
|
|
|
+/**
|
|
|
+ * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
|
|
+ * For licensing, see LICENSE.md.
|
|
|
+ */
|
|
|
+
|
|
|
+/* globals console:false, document, window */
|
|
|
+
|
|
|
+import ClassicEditor from '../../../../src/classiceditor';
|
|
|
+import Enter from '@ckeditor/ckeditor5-enter/src/enter';
|
|
|
+import Typing from '@ckeditor/ckeditor5-typing/src/typing';
|
|
|
+import Heading from '@ckeditor/ckeditor5-heading/src/heading';
|
|
|
+import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
|
|
|
+import Undo from '@ckeditor/ckeditor5-undo/src/undo';
|
|
|
+import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
|
|
|
+import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
|
|
|
+
|
|
|
+ClassicEditor.create( document.querySelector( '#editor' ), {
|
|
|
+ plugins: [ Enter, Typing, Paragraph, Undo, Heading, Bold, Italic ],
|
|
|
+ toolbar: {
|
|
|
+ items: [ 'headings', 'bold', 'italic', 'undo', 'redo' ],
|
|
|
+ verticalOffset: 100
|
|
|
+ }
|
|
|
+} )
|
|
|
+.then( newEditor => {
|
|
|
+ console.log( 'Editor was initialized', newEditor );
|
|
|
+ console.log( 'You can now play with it using global `editor` and `editable` variables.' );
|
|
|
+
|
|
|
+ window.editor = newEditor;
|
|
|
+} )
|
|
|
+.catch( err => {
|
|
|
+ console.error( err.stack );
|
|
|
+} );
|