build-select-all-source.js 582 B

12345678910111213141516
  1. /**
  2. * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. /* globals window */
  6. import ClassicEditor from '@ckeditor/ckeditor5-build-classic/src/ckeditor';
  7. import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
  8. import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
  9. import Underline from '@ckeditor/ckeditor5-basic-styles/src/underline';
  10. ClassicEditor.builtinPlugins.push( Bold, Italic, Underline );
  11. window.ClassicEditor = ClassicEditor;