-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
horizontalline.js
37 lines (33 loc) · 934 Bytes
/
horizontalline.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* @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';
}
}