UNPKG

suneditor

Version:

Vanilla JavaScript WYSIWYG web editor (2.x legacy version, actively maintained)

18 lines (15 loc) 422 B
'use strict'; import './assets/css/suneditor.css'; import './assets/css/suneditor-contents.css'; import plugins from './plugins'; import suneditor from './suneditor'; if (!window.SUNEDITOR) { Object.defineProperty(window, 'SUNEDITOR', { enumerable: true, writable: false, configurable: false, value: suneditor.init({ plugins: plugins }) }); }