|
|
@@ -18,6 +18,20 @@ import '../theme/specialcharacters.css';
|
|
|
* @extends module:core/plugin~Plugin
|
|
|
*/
|
|
|
export default class SpecialCharacters extends Plugin {
|
|
|
+ /**
|
|
|
+ * @inheritDoc
|
|
|
+ */
|
|
|
+ static get requires() {
|
|
|
+ return [ SpecialCharactersUI ];
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @inheritDoc
|
|
|
+ */
|
|
|
+ static get pluginName() {
|
|
|
+ return 'SpecialCharacters';
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* @inheritDoc
|
|
|
*/
|
|
|
@@ -41,20 +55,6 @@ export default class SpecialCharacters extends Plugin {
|
|
|
this._groups = new Map();
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @inheritDoc
|
|
|
- */
|
|
|
- static get requires() {
|
|
|
- return [ SpecialCharactersUI ];
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @inheritDoc
|
|
|
- */
|
|
|
- static get pluginName() {
|
|
|
- return 'SpecialCharacters';
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* Adds a collection of special characters to specified group. A title of a special character must be unique.
|
|
|
*
|