fix issue #15 add duplicate tab when addTab with {active:true}
This commit is contained in:
parent
869fd7e45b
commit
7871f41e54
1 changed files with 3 additions and 3 deletions
6
index.js
6
index.js
|
@ -59,6 +59,9 @@ class TabGroup extends EventEmitter {
|
|||
this.newTabId++;
|
||||
let tab = new Tab(this, id, args);
|
||||
this.tabs.push(tab);
|
||||
if (args.active === true) {
|
||||
tab.activate();
|
||||
}
|
||||
this.emit("tab-added", tab, this);
|
||||
return tab;
|
||||
}
|
||||
|
@ -134,9 +137,6 @@ class Tab extends EventEmitter {
|
|||
if (args.visible !== false) {
|
||||
this.show();
|
||||
}
|
||||
if (args.active === true) {
|
||||
this.activate();
|
||||
}
|
||||
if (typeof args.ready === "function") {
|
||||
args.ready(this);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue