| 12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /**
- * @module horizontal-line/horizontalline
- */
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
- import HorizontalLineEditing from './horizontallineediting';
- import HorizontalLineUI from './horizontallineui';
- /**
- * The horizontal line feature.
- *
- * It provides the possibility to insert a horizontal line into the rich-text editor.
- *
- * For a detailed overview, check the {@glink features/horizontal-line Horizontal line feature} documentation.
- *
- * @extends module:core/plugin~Plugin
- */
- export default class HorizontalLine extends Plugin {
- /**
- * @inheritDoc
- */
- static get requires() {
- return [ HorizontalLineEditing, HorizontalLineUI ];
- }
- /**
- * @inheritDoc
- */
- static get pluginName() {
- return 'HorizontalLine';
- }
- }
|