From 7a95185b34f05a91f2c60137607291a564772942 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Sat, 11 Feb 2012 18:23:43 -0500 Subject: [PATCH] Fix scrolling in basicViewer --- chrome/content/zotero/standalone/basicViewer.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/chrome/content/zotero/standalone/basicViewer.js b/chrome/content/zotero/standalone/basicViewer.js index dc2cdbccbe..174e45c859 100644 --- 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