commit 7a95185b34f05a91f2c60137607291a564772942
parent ef9040c46d230a76099ee2fa556e4208d85a08cf
Author: Simon Kornblith <simon@simonster.com>
Date: Sat, 11 Feb 2012 18:23:43 -0500
Fix scrolling in basicViewer
Diffstat:
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/chrome/content/zotero/standalone/basicViewer.js b/chrome/content/zotero/standalone/basicViewer.js
@@ -40,4 +40,11 @@ window.addEventListener("load", function() {
// show document
browser.loadURI.apply(browser, window.arguments);
+}, false);
+
+// XXX Why is this necessary to make the scroll bars appear?
+window.addEventListener("load", function() {
+ window.setTimeout(function() {
+ document.getElementById("my-browser").style.overflow = "auto";
+ }, 0);
}, false);
\ No newline at end of file