This commit is contained in:
yumoqing 2024-10-11 18:03:01 +08:00
parent 7d5a13850d
commit b761b820db

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){