mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
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 New Issue
Block a user