aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.resizable.js
diff options
context:
space:
mode:
authorJyoti Deka <dekajp@gmail.com>2013-12-07 01:39:34 -0500
committerMike Sherov <mike.sherov@gmail.com>2013-12-14 16:08:44 -0500
commitec5f395260c5e4b678d2fe39c5405d466ee8369e (patch)
tree7e86f1b4b2323205fbdd5009030af0a6d75a4735 /ui/jquery.ui.resizable.js
parentdfff0346d9c99c80b9d32a60720ec018677980e3 (diff)
downloadjquery-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.js2
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)