This commit is contained in:
yumoqing 2025-12-31 16:59:29 +08:00
parent f397d68bc2
commit 16b1521b81

View File

@ -162,7 +162,7 @@ bricks.Popup = class extends bricks.VBox {
this.current_height = this.current_height || this.get_height(); this.current_height = this.current_height || this.get_height();
this.resize_status = true; this.resize_status = true;
bricks.app.bind('mousemove', this.resizing.bind(this)); 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) console.log('= resize_stat_pos()', this.origin_event_x, this.origin_event_y)
} }
resizing(e){ resizing(e){
@ -210,7 +210,7 @@ bricks.Popup = class extends bricks.VBox {
this.is_resizing = false; this.is_resizing = false;
this.forget_event_pos(); this.forget_event_pos();
bricks.app.unbind('mousemove', this.resizing.bind(this)); 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 '); console.log('= stop_resizing() called ');
} }