Skip to content

Commit

Permalink
Fix done() handling, check for blocking, not block property
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Dec 9, 2010
1 parent d169270 commit cddab4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qunit/qunit.js
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ function process() {
break;
}
}
if (!config.block && !config.queue.length) {
if (!config.blocking && !config.queue.length) {
done();
}
}
Expand Down

0 comments on commit cddab4d

Please sign in to comment.