www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 1279ccf9f6b88797af2874d30b83247fc40104a4
parent e1349ec308580ec65eb5f24589fccdafe61b4a82
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue,  9 Mar 2010 06:26:08 +0000

Fix restoration of full-screen mode when opening Zotero pane (does not persist across Firefox restarts)


Diffstat:
Mchrome/content/zotero/overlay.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/overlay.js b/chrome/content/zotero/overlay.js @@ -509,7 +509,7 @@ var ZoteroPane = new function() } function isFullScreen() { - return document.getElementById('zotero-pane').getAttribute('fullscreenmode') == 'true'; + return document.getElementById('zotero-pane-stack').getAttribute('fullscreenmode') == 'true'; }