aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/ui.resizable.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/ui.resizable.js b/ui/ui.resizable.js
index 189e969cd..0b2e02e3a 100644
--- a/ui/ui.resizable.js
+++ b/ui/ui.resizable.js
@@ -325,8 +325,6 @@ $.widget("ui.resizable", $.extend($.ui.mouse, {
data = this._respectSize(data, e);
- this.propagate("resize", e);
-
el.css({
top: this.position.top + "px", left: this.position.left + "px",
width: this.size.width + "px", height: this.size.height + "px"
@@ -337,6 +335,8 @@ $.widget("ui.resizable", $.extend($.ui.mouse, {
this._updateCache(data);
+ this.propagate("resize", e);
+
return false;
},
mouseStop: function(e) {