diff options
| author | robin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-02-21 10:27:53 +0000 |
|---|---|---|
| committer | robin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-02-21 10:27:53 +0000 |
| commit | 82e8e4cbc21e7990cb3f8a38695bc539736d3fb2 (patch) | |
| tree | deeea635b7c826ce22a13c43d90916a5e9e1e4d8 | |
| parent | 321f5f39122b950a5557f243318839a429f61e90 (diff) | |
Fix Google spell checking in IE7 (closes #1484259).
git-svn-id: https://svn.roundcube.net/trunk@490 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rwxr-xr-x | roundcubemail/program/js/googiespell.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/googiespell.js b/roundcubemail/program/js/googiespell.js index f318e192c..aa729318b 100755 --- a/roundcubemail/program/js/googiespell.js +++ b/roundcubemail/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) { |
