Skip to content

Commit

Permalink
Merge branch 'bug7422' of https://github.com/csnover/jquery into csno…
Browse files Browse the repository at this point in the history
…ver-bug7422
  • Loading branch information
jeresig committed Nov 9, 2010
2 parents fb48ae8 + e57b73a commit aa74396
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
9 changes: 5 additions & 4 deletions src/ajax.js
Expand Up @@ -463,10 +463,11 @@ jQuery.extend({
try { try {
var oldAbort = xhr.abort; var oldAbort = xhr.abort;
xhr.abort = function() { xhr.abort = function() {
// xhr.abort in IE7 is not a native JS function if ( xhr ) {
// and does not have a call property // oldAbort has no call property in IE7 so
if ( xhr && oldAbort.call ) { // just do it this way, which works in all
oldAbort.call( xhr ); // browsers
Function.prototype.call.call( oldAbort, xhr );
} }


onreadystatechange( "abort" ); onreadystatechange( "abort" );
Expand Down
5 changes: 4 additions & 1 deletion test/unit/ajax.js
Expand Up @@ -137,7 +137,7 @@ test(".load()) - 404 error callbacks", function() {
}); });


test("jQuery.ajax() - abort", function() { test("jQuery.ajax() - abort", function() {
expect( 6 ); expect( 8 );
stop(); stop();


jQuery('#foo').ajaxStart(function(){ jQuery('#foo').ajaxStart(function(){
Expand All @@ -157,7 +157,10 @@ test("jQuery.ajax() - abort", function() {
complete: function(){ ok(true, "complete"); } complete: function(){ ok(true, "complete"); }
}); });


equals( xhr.readyState, 1, "XHR readyState indicates successful dispatch" );

xhr.abort(); xhr.abort();
equals( xhr.readyState, 0, "XHR readyState indicates successful abortion" );
}); });


test("Ajax events with context", function() { test("Ajax events with context", function() {
Expand Down

0 comments on commit aa74396

Please sign in to comment.