Compare commits

...

2 Commits

Author SHA1 Message Date
yumoqing
e0d17cf7e0 bugfix 2024-10-11 18:03:14 +08:00
yumoqing
b761b820db bugfix 2024-10-11 18:03:01 +08:00

View File

@ -108,7 +108,7 @@ var schedule_once = function(f, t){
t:time in second unit
*/
t = t * 1000
return window.setTimeout(f, t);
window.setTimeout(f, t);
}
var schedule_interval = function(f, t){
@ -117,7 +117,7 @@ var schedule_interval = function(f, t){
func();
schedule_once(mf.bind(func, t), t);
}
return schedule_once(mf.bind(f,t), t);
schedule_once(mf.bind(f,t), t);
}
var debug = function(){