From 2a8c5141236ae14619909de45e55e3b111be05ae Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Thu, 10 Feb 2011 01:58:47 +0000 Subject: [PATCH] don't show startup error twice in standalone --- chrome/content/zotero/standalone.js | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/content/zotero/standalone.js b/chrome/content/zotero/standalone.js index 8e3ab5ba02..c03e729a21 100644 --- a/chrome/content/zotero/standalone.js +++ b/chrome/content/zotero/standalone.js @@ -32,6 +32,7 @@ var ZoteroStandalone = new function() if(!Zotero || !Zotero.initialized) { ZoteroPane.displayStartupError(); window.close(); + return; } ZoteroPane.init(); ZoteroPane.makeVisible();