b38b6a7
click here to add a description
click here to add a homepage
The official jQuery user interface library. — Read more
http://jqueryui.com/
This URL has Read+Write access
Fixed #4127 - Resizable: displacement of element (in case of constraint resize area) props raziel057
@@ -690,6 +690,9 @@ $.ui.plugin.add("resizable", "containment", {
self.position.top = self._helper ? co.top : 0;
}
+ self.offset.left = self.parentData.left+self.position.left;
+ self.offset.top = self.parentData.top+self.position.top;
+
var woset = Math.abs( (self._helper ? self.offset.left - cop.left : (self.offset.left - cop.left)) + self.sizeDiff.width ),
hoset = Math.abs( (self._helper ? self.offset.top - cop.top : (self.offset.top - co.top)) + self.sizeDiff.height );
b38b6a7