From: Scott González Date: Thu, 19 Feb 2009 02:49:54 +0000 (+0000) Subject: Resizable: Fixed containment within relative/absolute positioned parent. Fixes ... X-Git-Tag: 1.7~63 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=47cd5b6f;p=jquery-ui.git Resizable: Fixed containment within relative/absolute positioned parent. Fixes #3882 - Left Margin Calculated Incorrectly (Using Containment). Patch provided by Brad Dunbar. --- diff --git a/ui/ui.resizable.js b/ui/ui.resizable.js index bfa04ede2..114aab830 100644 --- a/ui/ui.resizable.js +++ b/ui/ui.resizable.js @@ -690,6 +690,11 @@ $.ui.plugin.add("resizable", "containment", { 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 ); + var isParent = self.containerElement.get(0) == self.element.parent().get(0), + isOffsetRelative = /relative|absolute/.test(self.containerElement.css('position')); + + if(isParent && isOffsetRelative) woset -= self.parentData.left; + if (woset + self.size.width >= self.parentData.width) { self.size.width = self.parentData.width - woset; if (pRatio) self.size.height = self.size.width / o.aspectRatio;