Fixed force when calling tab.close()
This commit is contained in:
parent
a2a5ae7f3c
commit
58258cbc65
1 changed files with 5 additions and 5 deletions
2
index.js
2
index.js
|
@ -268,7 +268,7 @@ const TabPrivate = {
|
|||
let button = container.appendChild(document.createElement("button"));
|
||||
button.classList.add(`${tabClass}-button-close`);
|
||||
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