X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fcore.js;h=4c717e3b9f50338a0411c4d00782e530d7f922bf;hb=76102f4d8b56d88f8e37bec65d552d132703198d;hp=39d49743c0c9436c35834c730c70c39487ed3db1;hpb=38101be0484d79cb2d849ea252f508fe50bf72a3;p=jquery.git diff --git a/src/core.js b/src/core.js index 39d4974..4c717e3 100644 --- a/src/core.js +++ b/src/core.js @@ -800,7 +800,7 @@ jQuery.extend({ deferred = { // then( f1, f2, ...) - then: function then() { + then: function () { if ( ! cancelled ) { @@ -820,7 +820,7 @@ jQuery.extend({ elem = args[ i ]; type = jQuery.type( elem ); if ( type === "array" ) { - then.apply( this , elem ); + deferred.then.apply( deferred , elem ); } else if ( type === "function" ) { callbacks.push( elem ); }