diff options
author | jaubourg <j@ubourg.net> | 2011-02-11 07:39:46 +0100 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-02-11 07:39:46 +0100 |
commit | 066304edf0a1ed0303d79712bfa9c8697d5fa4d3 (patch) | |
tree | 919ee75de8c02131915e9c5c24e6a42c66a0d222 /src/ajax/xhr.js | |
parent | f2e0ae1a3932d6089853e8c0eed6ecb446610c00 (diff) | |
download | jquery-066304edf0a1ed0303d79712bfa9c8697d5fa4d3.tar.gz jquery-066304edf0a1ed0303d79712bfa9c8697d5fa4d3.zip |
Adds missing crossDomain test.
Diffstat (limited to 'src/ajax/xhr.js')
-rw-r--r-- | src/ajax/xhr.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js index e21847aa8..9c8790aba 100644 --- a/src/ajax/xhr.js +++ b/src/ajax/xhr.js @@ -170,7 +170,7 @@ if ( jQuery.support.ajax ) { // If the request is local and we have data: assume a success // (success with no data won't get notified, that's the best we // can do given current implementations) - !status && s.isLocal ? + !status && s.isLocal && !s.crossDomain ? ( responses.text ? 200 : 404 ) : // IE - #1450: sometimes returns 1223 when it should be 204 ( status === 1223 ? 204 : status ); |