|
|
@@ -0,0 +1,64 @@
|
|
|
+/**
|
|
|
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
|
|
|
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
|
+ */
|
|
|
+
|
|
|
+/* global document, console, window */
|
|
|
+
|
|
|
+import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
|
|
|
+import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
|
|
|
+import ImageResize from '../../src/imageresize';
|
|
|
+import Indent from '@ckeditor/ckeditor5-indent/src/indent';
|
|
|
+import IndentBlock from '@ckeditor/ckeditor5-indent/src/indentblock';
|
|
|
+import EasyImage from '@ckeditor/ckeditor5-easy-image/src/easyimage';
|
|
|
+
|
|
|
+import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
|
|
|
+
|
|
|
+const commonConfig = {
|
|
|
+ plugins: [
|
|
|
+ ArticlePluginSet,
|
|
|
+ ImageResize,
|
|
|
+ Indent,
|
|
|
+ IndentBlock,
|
|
|
+ EasyImage
|
|
|
+ ],
|
|
|
+ toolbar: [ 'heading', '|', 'bold', 'italic', 'link',
|
|
|
+ 'bulletedList', 'numberedList', 'blockQuote', 'insertTable', 'undo', 'redo', 'outdent', 'indent' ],
|
|
|
+ image: {
|
|
|
+ resizeUnit: 'px',
|
|
|
+ toolbar: [ 'imageStyle:alignLeft', 'imageStyle:full', 'imageStyle:side' ],
|
|
|
+ styles: [
|
|
|
+ 'full',
|
|
|
+ 'alignLeft',
|
|
|
+ 'side' // Purposely using side image instead right aligned image to make sure it works well with both style types.
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ cloudServices: CS_CONFIG
|
|
|
+};
|
|
|
+
|
|
|
+ClassicEditor
|
|
|
+ .create( document.querySelector( '#editor' ), commonConfig )
|
|
|
+ .then( editor => {
|
|
|
+ window.editor = editor;
|
|
|
+ } )
|
|
|
+ .catch( err => {
|
|
|
+ console.error( err.stack );
|
|
|
+ } );
|
|
|
+
|
|
|
+ClassicEditor
|
|
|
+ .create( document.querySelector( '#fancy-editor' ), commonConfig )
|
|
|
+ .then( editor => {
|
|
|
+ window.fancyEditor = editor;
|
|
|
+ } )
|
|
|
+ .catch( err => {
|
|
|
+ console.error( err.stack );
|
|
|
+ } );
|
|
|
+
|
|
|
+ClassicEditor
|
|
|
+ .create( document.querySelector( '#editor-other-units' ), commonConfig )
|
|
|
+ .then( editor => {
|
|
|
+ window.editorOtherUnits = editor;
|
|
|
+ } )
|
|
|
+ .catch( err => {
|
|
|
+ console.error( err.stack );
|
|
|
+ } );
|