mirror of
https://ark.sudovanilla.org/Korbs/electron-tabs.git
synced 2024-12-23 03:53:53 +00:00
Fixed force when calling tab.close()
This commit is contained in:
parent
a2a5ae7f3c
commit
58258cbc65
2
index.js
2
index.js
|
@ -268,7 +268,7 @@ const TabPrivate = {
|
||||||
let button = container.appendChild(document.createElement("button"));
|
let button = container.appendChild(document.createElement("button"));
|
||||||
button.classList.add(`${tabClass}-button-close`);
|
button.classList.add(`${tabClass}-button-close`);
|
||||||
button.innerHTML = this.tabGroup.options.closeButtonText;
|
button.innerHTML = this.tabGroup.options.closeButtonText;
|
||||||
button.addEventListener("click", this.close.bind(this), false);
|
button.addEventListener("click", this.close.bind(this, false), false);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue