www

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

commit 959905a061bc83e6af72fddaacea1b67e9b7620e
parent 7a95185b34f05a91f2c60137607291a564772942
Author: Simon Kornblith <simon@simonster.com>
Date:   Sat, 11 Feb 2012 18:30:24 -0500

Use a single load event for scrollbar hack

Diffstat:
Mchrome/content/zotero/standalone/basicViewer.js | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/chrome/content/zotero/standalone/basicViewer.js b/chrome/content/zotero/standalone/basicViewer.js @@ -40,10 +40,8 @@ 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() { + + // XXX Why is this necessary to make the scroll bars appear? window.setTimeout(function() { document.getElementById("my-browser").style.overflow = "auto"; }, 0);