mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-20 11:00:52 +08:00
This commit is contained in:
parent
24757b72c1
commit
3d1ff6ac16
@ -361,11 +361,8 @@ export const globalShortcut = () => {
|
||||
const currentType = currentLiElement.getAttribute("data-type") as TDockType;
|
||||
if (currentType) {
|
||||
getDockByType(currentType).toggleModel(currentType, true);
|
||||
const target = event.target as HTMLElement;
|
||||
if (target.classList.contains("protyle-wysiwyg") ||
|
||||
target.classList.contains("protyle-title__input") ||
|
||||
target.tagName === "INPUT" || target.tagName === "TEXTAREA") {
|
||||
target.blur();
|
||||
if (document.activeElement) {
|
||||
(document.activeElement as HTMLElement).blur();
|
||||
}
|
||||
} else {
|
||||
const currentId = currentLiElement.getAttribute("data-id");
|
||||
@ -613,10 +610,8 @@ export const globalShortcut = () => {
|
||||
const matchDock = getAllDocks().find(item => {
|
||||
if (matchHotKey(window.siyuan.config.keymap.general[item.hotkeyLangId].custom, event)) {
|
||||
getDockByType(item.type).toggleModel(item.type);
|
||||
if (target.classList.contains("protyle-wysiwyg") ||
|
||||
target.classList.contains("protyle-title__input") ||
|
||||
target.tagName === "INPUT" || target.tagName === "TEXTAREA") {
|
||||
target.blur();
|
||||
if (document.activeElement) {
|
||||
(document.activeElement as HTMLElement).blur();
|
||||
}
|
||||
event.preventDefault();
|
||||
return true;
|
||||
@ -627,23 +622,18 @@ export const globalShortcut = () => {
|
||||
}
|
||||
if (matchHotKey(window.siyuan.config.keymap.general.riffCard.custom, event)) {
|
||||
openCard();
|
||||
if (target.classList.contains("protyle-wysiwyg") ||
|
||||
target.tagName === "TABLE" ||
|
||||
target.classList.contains("protyle-title__input") ||
|
||||
target.tagName === "INPUT" || target.tagName === "TEXTAREA") {
|
||||
target.blur();
|
||||
if (document.activeElement) {
|
||||
(document.activeElement as HTMLElement).blur();
|
||||
}
|
||||
event.preventDefault();
|
||||
return;
|
||||
}
|
||||
if (!isTabWindow && matchHotKey(window.siyuan.config.keymap.general.dailyNote.custom, event)) {
|
||||
newDailyNote();
|
||||
if (target.classList.contains("protyle-wysiwyg") ||
|
||||
target.tagName === "TABLE" ||
|
||||
target.classList.contains("protyle-title__input") ||
|
||||
target.tagName === "INPUT" || target.tagName === "TEXTAREA") {
|
||||
target.blur();
|
||||
if (document.activeElement) {
|
||||
(document.activeElement as HTMLElement).blur();
|
||||
}
|
||||
event.stopPropagation();
|
||||
event.preventDefault();
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user