summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJJfutbol <JJfutbol@d4e419ec-0920-11de-bbfd-a7c1bc4c261e>2009-08-13 07:02:12 +0000
committerJJfutbol <JJfutbol@d4e419ec-0920-11de-bbfd-a7c1bc4c261e>2009-08-13 07:02:12 +0000
commit4c0e9e9390adfe8e7296598fc35ed8b52255b960 (patch)
tree86ce244e0c110fdd603038d021421c755010e201
parent095fa7e06537feb7b92f2ef2335bf04855de3418 (diff)
downloadreadability-simple-4c0e9e9390adfe8e7296598fc35ed8b52255b960.tar.bz2
readability-simple-4c0e9e9390adfe8e7296598fc35ed8b52255b960.zip
- fixed bug where reload link wasn't returning false
git-svn-id: http://arc90labs-readability.googlecode.com/svn/trunk@73 d4e419ec-0920-11de-bbfd-a7c1bc4c261e
-rwxr-xr-xjs/readability.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/readability.js b/js/readability.js
index 92a9f5c..3d6a4fc 100755
--- a/js/readability.js
+++ b/js/readability.js
@@ -39,7 +39,7 @@ if (typeof console == 'undefined')
// set up the toolbar widget
toolBar.id = "readTools";
- toolBar.innerHTML = '<a href="#" onclick="return window.location.reload();" title="Reload original page" id="reload-page">Reload Original Page</a>' +
+ toolBar.innerHTML = '<a href="#" onclick="window.location.reload();return false;" title="Reload original page" id="reload-page">Reload Original Page</a>' +
'<a href="#" onclick="javascript:window.print();" title="Print page" id="print-page">Print Page</a>' +
'<a href="#" onclick="emailBox();return false;" title="Email page" id="email-page">Email Page</a>';