Skip to content

Commit 36b3129

Browse files
committed
Updated dist and version.
1 parent 12a4e6e commit 36b3129

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dist/utils.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1635,11 +1635,11 @@ FunctionUtil = {
16351635

16361636
until: function(milliseconds, func, scope)
16371637
{
1638-
var interval = FunctionUtil.repeat(50, function() {
1638+
var interval = FunctionUtil.repeat(milliseconds, function() {
16391639
if (func() === false) {
16401640
interval.cancel();
16411641
}
1642-
}, this);
1642+
}, scope);
16431643
return interval;
16441644
},
16451645

0 commit comments

Comments
 (0)