mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-04 15:58:49 +01:00
This commit is contained in:
parent
df3bafdb48
commit
dea6ecd5b9
1 changed files with 4 additions and 4 deletions
|
|
@ -52,7 +52,7 @@ export const commonHotkey = (protyle: IProtyle, event: KeyboardEvent, nodeElemen
|
|||
if (matchHotKey(window.siyuan.config.keymap.editor.general.copyProtocolInMd.custom, event)) {
|
||||
if (nodeElement) {
|
||||
const selectElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select"));
|
||||
if (selectElements.length > 0) {
|
||||
if (selectElements.length === 0) {
|
||||
selectElements.push(nodeElement);
|
||||
}
|
||||
copyTextByType(selectElements.map(item => item.getAttribute("data-node-id")), "protocolMd")
|
||||
|
|
@ -67,7 +67,7 @@ export const commonHotkey = (protyle: IProtyle, event: KeyboardEvent, nodeElemen
|
|||
if (matchHotKey(window.siyuan.config.keymap.editor.general.copyID.custom, event)) {
|
||||
if (nodeElement) {
|
||||
const selectElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select"));
|
||||
if (selectElements.length > 0) {
|
||||
if (selectElements.length === 0) {
|
||||
selectElements.push(nodeElement);
|
||||
}
|
||||
copyTextByType(selectElements.map(item => item.getAttribute("data-node-id")), "id")
|
||||
|
|
@ -81,7 +81,7 @@ export const commonHotkey = (protyle: IProtyle, event: KeyboardEvent, nodeElemen
|
|||
if (matchHotKey(window.siyuan.config.keymap.editor.general.copyProtocol.custom, event)) {
|
||||
if (nodeElement) {
|
||||
const selectElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select"));
|
||||
if (selectElements.length > 0) {
|
||||
if (selectElements.length === 0) {
|
||||
selectElements.push(nodeElement);
|
||||
}
|
||||
copyTextByType(selectElements.map(item => item.getAttribute("data-node-id")), "protocol")
|
||||
|
|
@ -96,7 +96,7 @@ export const commonHotkey = (protyle: IProtyle, event: KeyboardEvent, nodeElemen
|
|||
if (matchHotKey(window.siyuan.config.keymap.editor.general.copyBlockEmbed.custom, event)) {
|
||||
if (nodeElement) {
|
||||
const selectElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select"));
|
||||
if (selectElements.length > 0) {
|
||||
if (selectElements.length === 0) {
|
||||
selectElements.push(nodeElement);
|
||||
}
|
||||
copyTextByType(selectElements.map(item => item.getAttribute("data-node-id")), "blockEmbed")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue