diff --git a/app/src/config/bazaar.ts b/app/src/config/bazaar.ts
index 5eb1f8782..b21da83a7 100644
--- a/app/src/config/bazaar.ts
+++ b/app/src/config/bazaar.ts
@@ -728,17 +728,17 @@ export const bazaar = {
if (!target.getAttribute("disabled")) {
target.setAttribute("disabled", "disabled");
window.siyuan.config.bazaar.petalDisabled = !(target as HTMLInputElement).checked;
- fetchPost("/api/setting/setBazaar", window.siyuan.config.bazaar, (response) => {
+ fetchPost("/api/setting/setBazaar", window.siyuan.config.bazaar, () => {
target.removeAttribute("disabled");
if (window.siyuan.config.bazaar.petalDisabled) {
bazaar.element.querySelectorAll("#configBazaarDownloaded .b3-card").forEach(item => {
item.classList.add("b3-card--disabled");
uninstall(app, JSON.parse(item.getAttribute("data-obj")).name);
- })
+ });
} else {
bazaar.element.querySelectorAll("#configBazaarDownloaded .b3-card").forEach(item => {
item.classList.remove("b3-card--disabled");
- })
+ });
loadPlugins(app).then(() => {
app.plugins.forEach(item => {
afterLoadPlugin(item);
diff --git a/app/src/layout/topBar.ts b/app/src/layout/topBar.ts
index 0dc3575a9..0d48e5618 100644
--- a/app/src/layout/topBar.ts
+++ b/app/src/layout/topBar.ts
@@ -383,7 +383,7 @@ const openPlugin = (app: App, target: Element) => {
}
});
if (!hasPlugin) {
- window.siyuan.menus.menu.element.querySelector(".b3-menu__separator").remove()
+ window.siyuan.menus.menu.element.querySelector(".b3-menu__separator").remove();
}
let rect = target.getBoundingClientRect();
if (rect.width === 0) {
diff --git a/app/src/plugin/commandPanel.ts b/app/src/plugin/commandPanel.ts
index ed4427439..17354035a 100644
--- a/app/src/plugin/commandPanel.ts
+++ b/app/src/plugin/commandPanel.ts
@@ -17,21 +17,21 @@ export const commandPanel = (app: App) => {
`
- })
+ });
const listElement = dialog.element.querySelector("#commands");
app.plugins.forEach(plugin => {
plugin.commands.forEach(command => {
const liElement = document.createElement("li");
- liElement.classList.add("b3-list-item")
+ liElement.classList.add("b3-list-item");
liElement.innerHTML = `${command.langText || plugin.i18n[command.langKey]}
${updateHotkeyTip(command.customHotkey)}`;
liElement.addEventListener("click", () => {
command.callback();
dialog.destroy();
- })
+ });
listElement.insertAdjacentElement("beforeend", liElement);
- })
- })
+ });
+ });
if (listElement.childElementCount === 0) {
const liElement = document.createElement("li");
@@ -40,7 +40,7 @@ export const commandPanel = (app: App) => {
liElement.addEventListener("click", () => {
dialog.destroy();
openSetting(app).element.querySelector('.b3-tab-bar [data-name="bazaar"]').dispatchEvent(new CustomEvent("click"));
- })
+ });
listElement.insertAdjacentElement("beforeend", liElement);
} else {
listElement.firstElementChild.classList.add("b3-list-item--focus");
@@ -64,9 +64,9 @@ export const commandPanel = (app: App) => {
dialog.destroy();
}
});
- inputElement.addEventListener("compositionend", (event: InputEvent) => {
+ inputElement.addEventListener("compositionend", () => {
filterList(inputElement, listElement);
- })
+ });
inputElement.addEventListener("input", (event: InputEvent) => {
if (event.isComposing) {
return;
@@ -74,7 +74,7 @@ export const commandPanel = (app: App) => {
event.stopPropagation();
filterList(inputElement, listElement);
});
-}
+};
const filterList = (inputElement: HTMLInputElement, listElement: Element) => {
const inputValue = inputElement.value.toLowerCase();
@@ -83,7 +83,7 @@ const filterList = (inputElement: HTMLInputElement, listElement: Element) => {
if (inputValue.indexOf(elementValue) > -1 || elementValue.indexOf(inputValue) > -1) {
element.classList.remove("fn__none");
} else {
- element.classList.add("fn__none")
+ element.classList.add("fn__none");
}
- })
-}
+ });
+};
diff --git a/app/src/protyle/hint/index.ts b/app/src/protyle/hint/index.ts
index 1c439b1ee..58552d995 100644
--- a/app/src/protyle/hint/index.ts
+++ b/app/src/protyle/hint/index.ts
@@ -621,17 +621,17 @@ ${unicode2Emoji(emoji.unicode)}`;
return;
} else if (value.startsWith("plugin")) {
protyle.app.plugins.find((plugin) => {
- const ids = value.split(Constants.ZWSP)
+ const ids = value.split(Constants.ZWSP);
if (ids[1] === plugin.name) {
plugin.protyleSlash.find((slash) => {
if (slash.id === ids[2]){
slash.callback(protyle.getInstance());
return true;
}
- })
+ });
return true;
}
- })
+ });
return;
} else {
range.deleteContents();