This commit is contained in:
Vanessa 2023-11-10 18:26:29 +08:00
parent ea2c6fa6be
commit 2d99bf6a8f

View File

@ -333,22 +333,24 @@ export const closeTabByType = async (tab: Tab, type: "closeOthers" | "closeAll"
index--;
}
}
return;
}
if (type === "closeAll") {
} else if (type === "closeAll") {
for (let index = 0; index < tab.parent.children.length; index++) {
if (!tab.parent.children[index].headElement.classList.contains("item--pin")) {
await tab.parent.children[index].parent.removeTab(tab.parent.children[index].id, true);
index--;
}
}
return;
}
if (tabs.length > 0) {
} else if (tabs.length > 0) {
for (let index = 0; index < tabs.length; index++) {
if (!tabs[index].headElement.classList.contains("item--pin")) {
await tabs[index].parent.removeTab(tabs[index].id);
}
}
}
if (tab.headElement.parentElement && !tab.headElement.parentElement.querySelector(".item--focus")) {
tab.parent.switchTab(tab.headElement, true);
} else if (tab.parent.children.length > 0) {
tab.parent.switchTab(tab.parent.children[tab.parent.children.length - 1].headElement, true);
}
};