context menu on tab and "close all except for this tab"

This commit is contained in:
zadam
2019-05-07 21:34:01 +02:00
parent aef0e552a0
commit 4ea27e604f
3 changed files with 30 additions and 0 deletions

View File

@@ -277,6 +277,14 @@
this.setupDraggabilly()
}
removeAllTabsExceptForThis(remainingTabEl) {
for (const tabEl of this.tabEls) {
if (remainingTabEl !== tabEl) {
this.removeTab(tabEl);
}
}
}
updateTab(tabEl, tabProperties) {
tabEl.querySelector('.chrome-tab-title').textContent = tabProperties.title