r2164 - trunk/ui
r2164 - trunk/ui
Author: rdworth
Date: Mon Mar 2 02:39:16 2009
New Revision: 2164
Modified:
trunk/ui/ui.resizable.js
Log:
Fixed #3053 - when resizing a image a row of pixels can disappear
props raziel057
Modified: trunk/ui/ui.resizable.js
==============================================================================
--- trunk/ui/ui.resizable.js (original)
+++ trunk/ui/ui.resizable.js Mon Mar 2 02:39:16 2009
@@ -311,6 +311,9 @@
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();
}