From afb5327c4389f3ac3d44915c2fab1e263639dad8 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Mon, 25 Sep 2023 10:43:48 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/9259 --- app/src/mobile/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/mobile/index.ts b/app/src/mobile/index.ts index 04c3b0933..9c262cbf0 100644 --- a/app/src/mobile/index.ts +++ b/app/src/mobile/index.ts @@ -110,7 +110,7 @@ class App { document.addEventListener("touchend", (event) => { handleTouchEnd(event, siyuanApp); }, false); - // https://github.com/siyuan-note/siyuan/issues/9259 + // 移动端删除键 https://github.com/siyuan-note/siyuan/issues/9259 window.addEventListener("keydown", (event) => { if (getSelection().rangeCount > 0) { const range = getSelection().getRangeAt(0);