heading-source.js 557 B

12345678910111213
  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 HeadingButtonsUI from '@ckeditor/ckeditor5-heading/src/headingbuttonsui';
  8. import ParagraphButtonUI from '@ckeditor/ckeditor5-paragraph/src/paragraphbuttonui';
  9. ClassicEditor.builtinPlugins.push(
  10. HeadingButtonsUI,
  11. ParagraphButtonUI
  12. );
  13. window.ClassicEditor = ClassicEditor;