From 337787ca61340ed07f282c985b5b9163aa3cd040 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 25 Feb 2026 14:20:49 +0800 Subject: [PATCH] bugfix --- bricks/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bricks/popup.js b/bricks/popup.js index c6814f3..f7e0273 100644 --- a/bricks/popup.js +++ b/bricks/popup.js @@ -85,7 +85,7 @@ bricks.Popup = class extends bricks.VBox { set_dismiss_events(w){ if (!this.dismiss_events) return; this.dismiss_events.forEach(ename => { - w.bind(ename, this.destroy.bind(this)); + w.bind(ename, this.dismiss.bind(this)); }); } bring_to_top(){