diff options
author | JJfutbol <JJfutbol@d4e419ec-0920-11de-bbfd-a7c1bc4c261e> | 2009-08-13 07:02:12 +0000 |
---|---|---|
committer | JJfutbol <JJfutbol@d4e419ec-0920-11de-bbfd-a7c1bc4c261e> | 2009-08-13 07:02:12 +0000 |
commit | 4c0e9e9390adfe8e7296598fc35ed8b52255b960 (patch) | |
tree | 86ce244e0c110fdd603038d021421c755010e201 /js | |
parent | 095fa7e06537feb7b92f2ef2335bf04855de3418 (diff) | |
download | readability-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
Diffstat (limited to 'js')
-rwxr-xr-x | js/readability.js | 2 |
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>';
|