浏览代码

:rotating_light:

Vanessa 2 年之前
父节点
当前提交
17f6ab335b
共有 4 个文件被更改,包括 8 次插入8 次删除
  1. 1 1
      app/src/menus/Menu.ts
  2. 1 1
      app/src/plugin/index.ts
  3. 4 4
      app/src/protyle/toolbar/Font.ts
  4. 2 2
      app/src/protyle/wysiwyg/keydown.ts

+ 1 - 1
app/src/menus/Menu.ts

@@ -116,7 +116,7 @@ export class Menu {
             return;
         }
         if (typeof index === "number") {
-            const insertElement = this.element.querySelectorAll(".b3-menu__items > .b3-menu__separator")[index]
+            const insertElement = this.element.querySelectorAll(".b3-menu__items > .b3-menu__separator")[index];
             if (insertElement) {
                 insertElement.before(element);
                 return;

+ 1 - 1
app/src/plugin/index.ts

@@ -217,5 +217,5 @@ export class Plugin {
             nodeIds: options.ids,
             defIds: options.defIds,
         }));
-    }
+    };
 }

+ 4 - 4
app/src/protyle/toolbar/Font.ts

@@ -14,11 +14,11 @@ export class Font extends ToolbarItem {
         this.element.addEventListener("click", () => {
             let nodeElements: Element[];
             if (protyle.toolbar.range.toString() === "") {
-                nodeElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select"))
+                nodeElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select"));
                 if (nodeElements.length === 0) {
                     const nodeElement = hasClosestBlock(protyle.toolbar.range.startContainer);
                     if (nodeElement) {
-                        nodeElements = [nodeElement]
+                        nodeElements = [nodeElement];
                     }
                 }
             }
@@ -94,7 +94,7 @@ export const appearanceMenu = (protyle: IProtyle, nodeElements?: Element[]) => {
         });
         lastColorHTML += "</div>";
     }
-    let textElement: HTMLElement
+    let textElement: HTMLElement;
     let fontSize = "16px";
     if (nodeElements && nodeElements.length > 0) {
         textElement = nodeElements[0] as HTMLElement;
@@ -216,7 +216,7 @@ export const fontEvent = (protyle: IProtyle, nodeElements: Element[], type?: str
                 e.style.backgroundColor = "";
                 e.style.fontSize = "";
             } else if (type === "style1") {
-                const colorList = color.split(Constants.ZWSP)
+                const colorList = color.split(Constants.ZWSP);
                 e.style.backgroundColor = colorList[0];
                 e.style.color = colorList[1];
             } else if (type === "style2") {

+ 2 - 2
app/src/protyle/wysiwyg/keydown.ts

@@ -1290,11 +1290,11 @@ export const keydown = (app: App, protyle: IProtyle, editorElement: HTMLElement)
         // toolbar action
         if (matchHotKey(window.siyuan.config.keymap.editor.insert.lastUsed.custom, event)) {
             protyle.toolbar.range = range;
-            let selectElements: Element[] = []
+            let selectElements: Element[] = [];
             if (selectText === "") {
                 selectElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select"));
                 if (selectElements.length === 0) {
-                    selectElements = [nodeElement]
+                    selectElements = [nodeElement];
                 }
             }
             fontEvent(protyle, selectElements);