diff options
author | gromo <yuriy@tokyoscale.com> | 2012-02-22 13:05:02 +0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-03-02 06:13:37 -0500 |
commit | 3e8ec7eb6bee97034363fe4e8704ed762fadbaba (patch) | |
tree | 75d54d7ad78fabf89e09aea4b6e29392a65983ac | |
parent | f65d6b92cc14ee3e829d6e941fcd07a5fb37b278 (diff) | |
download | jquery-ui-3e8ec7eb6bee97034363fe4e8704ed762fadbaba.tar.gz jquery-ui-3e8ec7eb6bee97034363fe4e8704ed762fadbaba.zip |
Resizable: Update aspectRatio to use calculated aspectRatio in case of: containment - parent; aspectRatio - true. Fixes #8158 - Resizable: aspectRatio: true isn't handled properly.
-rw-r--r-- | ui/jquery.ui.resizable.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.ui.resizable.js b/ui/jquery.ui.resizable.js index 34efe834a..0fdd69532 100644 --- a/ui/jquery.ui.resizable.js +++ b/ui/jquery.ui.resizable.js @@ -688,13 +688,13 @@ $.ui.plugin.add("resizable", "containment", { if (cp.left < (self._helper ? co.left : 0)) { self.size.width = self.size.width + (self._helper ? (self.position.left - co.left) : (self.position.left - cop.left)); - if (pRatio) self.size.height = self.size.width / o.aspectRatio; + if (pRatio) self.size.height = self.size.width / self.aspectRatio; self.position.left = o.helper ? co.left : 0; } if (cp.top < (self._helper ? co.top : 0)) { self.size.height = self.size.height + (self._helper ? (self.position.top - co.top) : self.position.top); - if (pRatio) self.size.width = self.size.height * o.aspectRatio; + if (pRatio) self.size.width = self.size.height * self.aspectRatio; self.position.top = self._helper ? co.top : 0; } |