diff --git a/chrome/content/zotero/overlay.js b/chrome/content/zotero/overlay.js index 0f14dbe03..c90daf561 100644 --- 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); + } }