Notes/src/math.js

16 lines
355 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';
export default class Math extends Plugin {
static get requires() {
return [ MathEditing, MathUI, Widget ];
}
static get pluginName() {
return 'Math';
}
}