17 lines
284 B
JavaScript
17 lines
284 B
JavaScript
var DefaultTheme;
|
|
|
|
DefaultTheme = (function() {
|
|
DefaultTheme.OPTIONS = {};
|
|
|
|
function DefaultTheme(quill) {
|
|
this.quill = quill;
|
|
this.editor = this.quill.editor;
|
|
this.editorContainer = this.editor.root;
|
|
}
|
|
|
|
return DefaultTheme;
|
|
|
|
})();
|
|
|
|
module.exports = DefaultTheme;
|