build-restricted-editing-source.js 947 B

12345678910111213141516171819202122
  1. /**
  2. * @license Copyright (c) 2003-2019, 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 RestrictedEditingMode from '@ckeditor/ckeditor5-restricted-editing/src/restrictededitingmode';
  8. import StandardEditingMode from '@ckeditor/ckeditor5-restricted-editing/src/standardeditingmode';
  9. import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
  10. import Table from '@ckeditor/ckeditor5-table/src/table';
  11. ClassicEditor.builtinPlugins.push(
  12. RestrictedEditingMode, StandardEditingMode, ArticlePluginSet, Table );
  13. window.ClassicEditor = ClassicEditor;
  14. // window.RestrictedEditingMode = RestrictedEditingMode;
  15. // window.StandardEditingMode = StandardEditingMode;
  16. // window.ArticlePluginSet = ArticlePluginSet;
  17. // window.Ta = Ta;