From 1279ccf9f6b88797af2874d30b83247fc40104a4 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 9 Mar 2010 06:26:08 +0000 Subject: [PATCH] Fix restoration of full-screen mode when opening Zotero pane (does not persist across Firefox restarts) --- chrome/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 index e75c68f31..2fa0718c3 100644 --- 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'; }