fixed #3026 - resizable resize handler is called too early

This commit is contained in:
Richard Worth
2008-06-25 12:03:28 +00:00
parent d0c11e932b
commit d28ce126d8

View File

@@ -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) {