Compare commits

..

No commits in common. "e0d17cf7e0a341d6d0f26fb379a780cad1e9bb6e" and "7d5a13850dfda2429b9a1906d9d14e93eb095a3a" have entirely different histories.

View File

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