diff options
author | Jyoti Deka <dekajp@gmail.com> | 2013-12-07 01:39:34 -0500 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2013-12-14 16:08:44 -0500 |
commit | ec5f395260c5e4b678d2fe39c5405d466ee8369e (patch) | |
tree | 7e86f1b4b2323205fbdd5009030af0a6d75a4735 /ui/jquery.ui.resizable.js | |
parent | dfff0346d9c99c80b9d32a60720ec018677980e3 (diff) | |
download | jquery-ui-ec5f395260c5e4b678d2fe39c5405d466ee8369e.tar.gz jquery-ui-ec5f395260c5e4b678d2fe39c5405d466ee8369e.zip |
Resizable: modified to allow resizing when resizables are nested.
Fixes #5025
Closes gh-1149
Diffstat (limited to 'ui/jquery.ui.resizable.js')
-rw-r--r-- | ui/jquery.ui.resizable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.resizable.js b/ui/jquery.ui.resizable.js index 040f029f9..dc14a53a6 100644 --- a/ui/jquery.ui.resizable.js +++ b/ui/jquery.ui.resizable.js @@ -169,7 +169,7 @@ $.widget("ui.resizable", $.ui.mouse, { for(i in this.handles) { if(this.handles[i].constructor === String) { - this.handles[i] = $(this.handles[i], this.element).show(); + this.handles[i] = this.element.children( this.handles[ i ] ).first().show(); } //Apply pad to wrapper element, needed to fix axis position (textarea, inputs, scrolls) |