| 12345678910111213141516171819202122 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* globals window */
- import ClassicEditor from '@ckeditor/ckeditor5-build-classic/src/ckeditor';
- import FontFamily from '@ckeditor/ckeditor5-font/src/fontfamily';
- import FontSize from '@ckeditor/ckeditor5-font/src/fontsize';
- import Alignment from '@ckeditor/ckeditor5-alignment/src/alignment';
- import TableProperties from '@ckeditor/ckeditor5-table/src/tableproperties';
- import TableCellProperties from '@ckeditor/ckeditor5-table/src/tablecellproperties';
- ClassicEditor.builtinPlugins.push( FontFamily, FontSize, Alignment );
- window.ClassicEditor = ClassicEditor;
- window.CKEditorPlugins = {
- TableProperties,
- TableCellProperties
- };
|