Ensure that AJAX requests are actually aborted in all browsers. Fix #7422.

This commit is contained in:
Colin Snover 2010-11-06 13:52:30 -05:00
parent a4df6945b8
commit e57b73a0ac
2 changed files with 9 additions and 5 deletions

View file

@ -463,10 +463,11 @@ jQuery.extend({
try {
var oldAbort = xhr.abort;
xhr.abort = function() {
// xhr.abort in IE7 is not a native JS function
// and does not have a call property
if ( xhr && oldAbort.call ) {
oldAbort.call( xhr );
if ( xhr ) {
// oldAbort has no call property in IE7 so
// just do it this way, which works in all
// browsers
Function.prototype.call.call( oldAbort, xhr );
}
onreadystatechange( "abort" );