diff options
Diffstat (limited to 'src/Browser.js')
| -rw-r--r-- | src/Browser.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Browser.js b/src/Browser.js index 65d27448..efae8b29 100644 --- a/src/Browser.js +++ b/src/Browser.js @@ -126,7 +126,7 @@ function Browser(window, document, body, XHR, $log) { xhr.onreadystatechange = function() { if (xhr.readyState == 4) { // normalize IE bug (http://bugs.jquery.com/ticket/1450) - var status = xhr.status == 1223 ? 204 : xhr.status || 200; + var status = xhr.status == 1223 ? 204 : xhr.status; completeOutstandingRequest(callback, status, xhr.responseText, function(header) { header = lowercase(header); |
