| 12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* globals console, window, document */
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import ArticlePluginSet from '../_utils/articlepluginset';
- import BalloonToolbar from '@ckeditor/ckeditor5-ui/src/toolbar/balloon/balloontoolbar';
- ClassicEditor
- .create( document.querySelector( '#editor' ), {
- plugins: [ ArticlePluginSet, BalloonToolbar ],
- toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
- image: {
- toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
- },
- balloonToolbar: [ 'bold', 'italic', 'link' ]
- } )
- .then( editor => {
- window.editor = editor;
- const button = document.querySelector( '#read-only' );
- button.addEventListener( 'click', () => {
- editor.isReadOnly = !editor.isReadOnly;
- button.textContent = editor.isReadOnly ? 'Turn off read-only mode' : 'Turn on read-only mode';
- editor.editing.view.focus();
- } );
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|