mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
class WysiwygEditor {
|
|
|
|
constructor(elem) {
|
|
this.elem = elem;
|
|
this.options = require("../pages/page-form");
|
|
tinymce.init(this.options);
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = WysiwygEditor; |