| 123456789101112131415161718192021222324 |
- /**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* global console:false */
- 'use strict';
- import CKEDITOR from '/ckeditor.js';
- import ClassicCreator from '/ckeditor5/creator-classic/classiccreator.js';
- import Bold from '/ckeditor5/basic-styles/bold.js';
- CKEDITOR.create( '#editor1', {
- creator: ClassicCreator,
- features: [ Bold ],
- toolbar: [ 'bold' ]
- } )
- .then( editor => {
- window.editor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|