commit 070c8eb7a53c604f59a4902e43e1f9c6f332daed
parent 17466694bbe630cdb28ba8698520089407f51c88
Author: Simon Kornblith <simon@simonster.com>
Date: Tue, 30 Nov 2010 21:02:34 +0000
fix code mistakenly removed in r7384
Diffstat:
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/chrome/content/zotero/overlay.js b/chrome/content/zotero/overlay.js
@@ -105,9 +105,8 @@ var ZoteroPane = new function()
if(Zotero.isStandalone) {
_loaded = true;
this.toggleDisplay();
- } else {
- return;
}
+ return;
}
if (Zotero.locked) {
@@ -220,6 +219,11 @@ var ZoteroPane = new function()
if (Zotero.Prefs.get('debugShowDuplicates')) {
document.getElementById('zotero-tb-actions-showDuplicates').hidden = false;
}
+
+ if(Zotero.isStandalone) {
+ this.toggleDisplay(true);
+ this.fullScreen(true);
+ }
}