Makes sure statusText always defaults to "error".
This commit is contained in:
parent
d92dc2902c
commit
2953d0481a
|
@ -509,7 +509,7 @@ jQuery.extend({
|
||||||
// We extract error from statusText
|
// We extract error from statusText
|
||||||
// then normalize statusText and status for non-aborts
|
// then normalize statusText and status for non-aborts
|
||||||
error = statusText;
|
error = statusText;
|
||||||
if( status ) {
|
if( !statusText || status ) {
|
||||||
statusText = "error";
|
statusText = "error";
|
||||||
if ( status < 0 ) {
|
if ( status < 0 ) {
|
||||||
status = 0;
|
status = 0;
|
||||||
|
|
Loading…
Reference in a new issue