From b761b820dbcd863156f3b8227a1e5b4ff9df40ca Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 11 Oct 2024 18:03:01 +0800 Subject: [PATCH] bugfix --- bricks/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bricks/utils.js b/bricks/utils.js index 21737e2..75a41bd 100755 --- a/bricks/utils.js +++ b/bricks/utils.js @@ -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){