summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2007-02-21 10:27:53 +0000
committersvncommit <devs@roundcube.net>2007-02-21 10:27:53 +0000
commitbb76bc64659c1cda3940e098c8d932f7a3b0664c (patch)
treedc10140e88b4018cc07aedfd04306da4965cb785
parent6ea80c84afa782ed650ec07123f885586fe4de27 (diff)
Fix Google spell checking in IE7 (closes #1484259).
-rwxr-xr-xprogram/js/googiespell.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/googiespell.js b/program/js/googiespell.js
index f318e192c..aa729318b 100755
--- a/program/js/googiespell.js
+++ b/program/js/googiespell.js
@@ -301,7 +301,7 @@ var AJS = {
var onreadystatechange = function () {
if (req.readyState == 4) {
try {
- status = req.status;
+ var status = req.status;
}
catch(e) {};
if(status == 200 || status == 304 || req.responseText == null) {