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