Help to squelch unnecessary Mozilla exceptions.
This commit is contained in:
parent
1edf3a2be9
commit
cef11df838
|
@ -170,9 +170,12 @@ jQuery.ajax.active = 0;
|
|||
|
||||
// Determines if an XMLHttpRequest was successful or not
|
||||
jQuery.httpSuccess = function(r) {
|
||||
try {
|
||||
return r.status ?
|
||||
( r.status >= 200 && r.status < 300 ) || r.status == 304 :
|
||||
location.protocol == "file:";
|
||||
} catch(e){}
|
||||
return false;
|
||||
};
|
||||
|
||||
// Get the data out of an XMLHttpRequest.
|
||||
|
|
Loading…
Reference in a new issue