mirror of
https://ark.sudovanilla.org/Korbs/electron-tabs.git
synced 2024-12-22 19:43:53 +00:00
Merge remote-tracking branch 'brrd/master'
This commit is contained in:
commit
c84d8194a5
7
index.js
7
index.js
|
@ -59,6 +59,10 @@ class TabGroup extends EventEmitter {
|
|||
this.newTabId++;
|
||||
let tab = new Tab(this, id, args);
|
||||
this.tabs.push(tab);
|
||||
// Don't call tab.activate() before a tab is referenced in this.tabs
|
||||
if (args.active === true) {
|
||||
tab.activate();
|
||||
}
|
||||
this.emit("tab-added", tab, this);
|
||||
return tab;
|
||||
}
|
||||
|
@ -135,9 +139,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);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "electron-tabs",
|
||||
"version": "0.6.0",
|
||||
"version": "0.6.1",
|
||||
"description": "Simple tabs for Electron applications",
|
||||
"main": "index.js",
|
||||
"repository": {
|
||||
|
|
Loading…
Reference in a new issue