diff options
author | Nick White <git@njw.me.uk> | 2010-11-02 19:00:05 +0000 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-11-02 19:00:05 +0000 |
commit | 9b74d624c1b248f81771082c7adc1bab3ae670d6 (patch) | |
tree | 60ecac8e80761ab0158d40fcb6d79b7d5780ce88 | |
parent | 0b2b7dbf98784abd44ec6359ae7c692d39f19c76 (diff) |
Fix bug when using with webkit
-rwxr-xr-x | readable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/readable.js b/readable.js index a4640c9..6e6a489 100755 --- a/readable.js +++ b/readable.js @@ -22,7 +22,7 @@ function readable() /* if we're running from a browser extension, rather than a page */ if(document == undefined) - var document = window.content.document; + document = window.content.document; /* if readable_original is set, then the readable version is currently active, * so switch to the readable_original html */ |