]> BookStack Code Mirror - bookstack/blob - resources/assets/js/components/wysiwyg-editor.js
Finished migration of last angular code
[bookstack] / resources / assets / js / components / wysiwyg-editor.js
1 class WysiwygEditor {
2
3     constructor(elem) {
4         this.elem = elem;
5         this.options = require("../pages/page-form");
6         tinymce.init(this.options);
7     }
8
9 }
10
11 module.exports = WysiwygEditor;