diff options
author | svncommit <devs@roundcube.net> | 2007-02-21 10:27:53 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2007-02-21 10:27:53 +0000 |
commit | bb76bc64659c1cda3940e098c8d932f7a3b0664c (patch) | |
tree | dc10140e88b4018cc07aedfd04306da4965cb785 /program/js | |
parent | 6ea80c84afa782ed650ec07123f885586fe4de27 (diff) |
Fix Google spell checking in IE7 (closes #1484259).
Diffstat (limited to 'program/js')
-rwxr-xr-x | program/js/googiespell.js | 2 |
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) { |