mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
29 lines
560 B
JavaScript
29 lines
560 B
JavaScript
|
/**
|
||
|
* @param {Editor} editor
|
||
|
* @param {String} url
|
||
|
*/
|
||
|
function register(editor, url) {
|
||
|
|
||
|
const aboutDialog = {
|
||
|
title: 'About the WYSIWYG Editor',
|
||
|
url: window.baseUrl('/help/wysiwyg'),
|
||
|
};
|
||
|
|
||
|
editor.ui.registry.addButton('about', {
|
||
|
icon: 'help',
|
||
|
tooltip: 'About the editor',
|
||
|
onAction() {
|
||
|
tinymce.activeEditor.windowManager.openUrl(aboutDialog);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @param {WysiwygConfigOptions} options
|
||
|
* @return {register}
|
||
|
*/
|
||
|
export function getPlugin(options) {
|
||
|
return register;
|
||
|
}
|