8
0

bold.js 415 B

12345678910111213141516
  1. /**
  2. * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. import CKEDITOR from '/ckeditor.js';
  7. import ClassicCreator from '/ckeditor5/creator-classic/classiccreator.js';
  8. import Bold from '/ckeditor5/basic-styles/bold.js';
  9. CKEDITOR.create( '#editor1', {
  10. creator: ClassicCreator,
  11. features: [ Bold ],
  12. toolbar: [ 'bold' ]
  13. } );