From 00c137d1eda6c2963246b2a45bac18335716e908 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sat, 24 Jan 2026 00:08:29 +0800 Subject: [PATCH] bugfix --- bricks/countdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bricks/countdown.js b/bricks/countdown.js index c8957e5..2f0f022 100644 --- a/bricks/countdown.js +++ b/bricks/countdown.js @@ -97,7 +97,7 @@ bricks.Countdown = class extends bricks.VBox { var ts = bricks.formatTime(this.seconds); this.text_w.set_text(ts); if (this.seconds < 1){ - stop(); + this.stop(); this.dispatch('timeout'); } }