BookStack/resources/js/wysiwyg/plugins-stub.js
Dan Brown 921131f999
Modularised our tinymce config and plugins
- Split everything into specific plugin/concern files to make things
  more managable. Means original component file is now simple and much
  of the core config is focused in one place.
2022-02-05 23:15:58 +00:00

16 lines
225 B
JavaScript

/**
* @param {Editor} editor
* @param {String} url
*/
function register(editor, url) {
}
/**
* @param {WysiwygConfigOptions} options
* @return {register}
*/
export function getPlugin(options) {
return register;
}