| 1234567891011121314151617 |
- /**
- * @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 BalloonEditor from '@ckeditor/ckeditor5-build-balloon/src/ckeditor';
- import WordCount from '@ckeditor/ckeditor5-word-count/src/wordcount';
- ClassicEditor.builtinPlugins.push( WordCount );
- BalloonEditor.builtinPlugins.push( WordCount );
- window.ClassicEditor = ClassicEditor;
- window.BalloonEditor = BalloonEditor;
|