mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-22 01:20:12 +01:00
This commit is contained in:
parent
4a7b21f8ad
commit
4df5be8f3f
1 changed files with 6 additions and 2 deletions
|
|
@ -280,7 +280,7 @@ export class Outline extends Model {
|
|||
if (editItem.editor.protyle.block.rootID === this.blockId) {
|
||||
let previousID;
|
||||
let parentID;
|
||||
const undoPreviousID = item.previousElementSibling?.getAttribute("data-node-id");
|
||||
const undoPreviousID = (item.previousElementSibling && item.previousElementSibling.tagName === "UL") ? item.previousElementSibling.previousElementSibling.getAttribute("data-node-id") : item.previousElementSibling?.getAttribute("data-node-id");
|
||||
const undoParentID = item.parentElement.previousElementSibling?.getAttribute("data-node-id");
|
||||
if (selectItem.classList.contains("dragover")) {
|
||||
parentID = selectItem.getAttribute("data-node-id");
|
||||
|
|
@ -292,7 +292,11 @@ export class Outline extends Model {
|
|||
}
|
||||
} else if (selectItem.classList.contains("dragover__top")) {
|
||||
parentID = selectItem.parentElement.previousElementSibling?.getAttribute("data-node-id");
|
||||
if (selectItem.previousElementSibling && selectItem.previousElementSibling.tagName === "UL") {
|
||||
previousID = selectItem.previousElementSibling.previousElementSibling.getAttribute("data-node-id");
|
||||
} else {
|
||||
previousID = selectItem.previousElementSibling?.getAttribute("data-node-id");
|
||||
}
|
||||
selectItem.before(item);
|
||||
} else if (selectItem.classList.contains("dragover__bottom")) {
|
||||
previousID = selectItem.getAttribute("data-node-id");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue