BookStack/resources/js/wysiwyg/plugins-customhr.js
Dan Brown e711290d8b
Ran eslint fix on existing codebase
Had to do some manual fixing of the app.js file due to misplaced
comments
2023-04-18 22:20:02 +01:00

29 lines
693 B
JavaScript

/**
* @param {Editor} editor
* @param {String} url
*/
function register(editor, url) {
editor.addCommand('InsertHorizontalRule', () => {
const hrElem = document.createElement('hr');
const cNode = editor.selection.getNode();
const {parentNode} = cNode;
parentNode.insertBefore(hrElem, cNode);
});
editor.ui.registry.addButton('customhr', {
icon: 'horizontal-rule',
tooltip: 'Insert horizontal line',
onAction() {
editor.execCommand('InsertHorizontalRule');
},
});
}
/**
* @param {WysiwygConfigOptions} options
* @return {register}
*/
export function getPlugin(options) {
return register;
}