]> BookStack Code Mirror - bookstack/blobdiff - resources/js/wysiwyg/plugins-imagemanager.js
Fixed OIDC Logout
[bookstack] / resources / js / wysiwyg / plugins-imagemanager.js
index e7dd126cb0f9571c57c6d8c173e5d92dd6fe4033..37b5bfafd653b7f45fc523fd7b2775cbdd3e0c7c 100644 (file)
@@ -1,8 +1,7 @@
 /**
  * @param {Editor} editor
- * @param {String} url
  */
-function register(editor, url) {
+function register(editor) {
     // Custom Image picker button
     editor.ui.registry.addButton('imagemanager-insert', {
         title: 'Insert image',
@@ -23,9 +22,8 @@ function register(editor, url) {
 }
 
 /**
- * @param {WysiwygConfigOptions} options
  * @return {register}
  */
-export function getPlugin(options) {
+export function getPlugin() {
     return register;
 }