git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2e0ae1
)
Adds missing crossDomain test.
author
jaubourg
<j@ubourg.net>
Fri, 11 Feb 2011 06:39:46 +0000
(07:39 +0100)
committer
jaubourg
<j@ubourg.net>
Fri, 11 Feb 2011 06:39:46 +0000
(07:39 +0100)
src/ajax/xhr.js
patch
|
blob
|
history
diff --git
a/src/ajax/xhr.js
b/src/ajax/xhr.js
index
e21847a
..
9c8790a
100644
(file)
--- 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 );