From 16b1521b810c50f462613e38624780f2cef37687 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 31 Dec 2025 16:59:29 +0800 Subject: [PATCH] bugfix --- bricks/popup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bricks/popup.js b/bricks/popup.js index c43f04e..551335f 100644 --- a/bricks/popup.js +++ b/bricks/popup.js @@ -162,7 +162,7 @@ bricks.Popup = class extends bricks.VBox { this.current_height = this.current_height || this.get_height(); this.resize_status = true; bricks.app.bind('mousemove', this.resizing.bind(this)); - bricks.app.bind('mouseup', this.stop_resizeing.bind(this)); + bricks.app.bind('mouseup', this.stop_resizing.bind(this)); console.log('= resize_stat_pos()', this.origin_event_x, this.origin_event_y) } resizing(e){ @@ -210,7 +210,7 @@ bricks.Popup = class extends bricks.VBox { this.is_resizing = false; this.forget_event_pos(); bricks.app.unbind('mousemove', this.resizing.bind(this)); - bricks.app.unbind('mouseup', this.stop_resizeing.bind(this)); + bricks.app.unbind('mouseup', this.stop_resizing.bind(this)); console.log('= stop_resizing() called '); }