mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-02-28 05:32:52 +00:00
🎨 menu
This commit is contained in:
@@ -94,11 +94,6 @@ export const initBar = (app: App) => {
|
||||
} else {
|
||||
toolbarElement.dispatchEvent(new CustomEvent("click", {detail: itemId}));
|
||||
}
|
||||
if (!window.siyuan.menus.menu.element.classList.contains("fn__none") &&
|
||||
window.siyuan.menus.menu.element.getAttribute("data-name") === "barmore") {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}).element);
|
||||
});
|
||||
|
||||
@@ -179,11 +179,11 @@ export class MenuItem {
|
||||
if (this.element.getAttribute("disabled")) {
|
||||
return;
|
||||
}
|
||||
const result = options.click(this.element);
|
||||
options.click(this.element);
|
||||
event.preventDefault();
|
||||
event.stopImmediatePropagation();
|
||||
event.stopPropagation();
|
||||
if (typeof result === "undefined" || !result) {
|
||||
if (this.element.parentElement) {
|
||||
window.siyuan.menus.menu.remove();
|
||||
}
|
||||
});
|
||||
|
||||
2
app/src/types/index.d.ts
vendored
2
app/src/types/index.d.ts
vendored
@@ -724,7 +724,7 @@ declare interface IModels {
|
||||
|
||||
declare interface IMenu {
|
||||
label?: string,
|
||||
click?: (element: HTMLElement) => boolean | void,
|
||||
click?: (element: HTMLElement) => void,
|
||||
type?: "separator" | "submenu" | "readonly",
|
||||
accelerator?: string,
|
||||
action?: string,
|
||||
|
||||
Reference in New Issue
Block a user