Notes/src/math.js

17 lines
400 B
JavaScript
Raw Normal View History

2019-08-31 20:48:37 +03:00
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
import Widget from '@ckeditor/ckeditor5-widget/src/widget';
import MathUI from './mathui';
import MathEditing from './mathediting';
import AutoMath from './automath';
2019-08-31 20:48:37 +03:00
export default class Math extends Plugin {
static get requires() {
2019-10-01 17:46:51 +03:00
return [ MathEditing, MathUI, Widget, AutoMath ];
2019-08-31 20:48:37 +03:00
}
static get pluginName() {
return 'Math';
}
}