From 8fecd015cff46323cd7a45b98322b86baf6a9562 Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Mon, 2 Mar 2009 10:39:16 +0000 Subject: [PATCH] Fixed #3053 - when resizing a image a row of pixels can disappear props raziel057 --- ui/ui.resizable.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/ui.resizable.js b/ui/ui.resizable.js index ec56276d7..da33218d3 100644 --- a/ui/ui.resizable.js +++ b/ui/ui.resizable.js @@ -311,6 +311,9 @@ $.widget("ui.resizable", $.extend({}, $.ui.mouse, { if (!o.animate) this.element.css($.extend(s, { top: top, left: left })); + self.helper.height(self.size.height); + self.helper.width(self.size.width); + if (this._helper && !o.animate) this._proportionallyResize(); } -- 2.39.5