Skip to content
Permalink
Browse files
tmp was global in the new fn.promise. Fixes #9147.
  • Loading branch information
timmywil committed May 6, 2011
1 parent a257e07 commit f7f8450
Showing 1 changed file with 2 additions and 1 deletion.
@@ -148,7 +148,8 @@ jQuery.fn.extend({
count = 1,
deferDataKey = type + "defer",
queueDataKey = type + "queue",
markDataKey = type + "mark";
markDataKey = type + "mark",
tmp;
function resolve() {
if ( !( --count ) ) {
defer.resolveWith( elements, [ elements ] );

0 comments on commit f7f8450

Please sign in to comment.