mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
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) {
|
||||
return r.status ?
|
||||
( r.status >= 200 && r.status < 300 ) || r.status == 304 :
|
||||
location.protocol == "file:";
|
||||
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 New Issue
Block a user