From 8e4625bc41b966d31aa115469e9376e4a75c48b3 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 27 Aug 2007 04:17:36 +0000 Subject: [PATCH] QSG tab wasn't opening after XPI install -- do it on a timer --- chrome/content/zotero/overlay.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chrome/content/zotero/overlay.js b/chrome/content/zotero/overlay.js index 21f7e879a..2e73a039d 100644 --- a/chrome/content/zotero/overlay.js +++ b/chrome/content/zotero/overlay.js @@ -182,7 +182,9 @@ var ZoteroPane = new function() // they the DB is initialized erroneously (e.g. while switching data // directory locations) if (Zotero.Schema.dbInitialized && Zotero.Prefs.get('firstRun')) { - gBrowser.selectedTab = gBrowser.addTab('http://www.zotero.org/documentation/quick_start_guide'); + setTimeout(function () { + gBrowser.selectedTab = gBrowser.addTab('http://www.zotero.org/documentation/quick_start_guide'); + }, 400); Zotero.Prefs.set('extensions.zotero.firstRun', false); } }