diff options
Diffstat (limited to 'ui/ui.resizable.js')
-rw-r--r-- | ui/ui.resizable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.resizable.js b/ui/ui.resizable.js index 737ae4a75..1a05d97f4 100644 --- a/ui/ui.resizable.js +++ b/ui/ui.resizable.js @@ -606,7 +606,7 @@ $.ui.plugin.add("resizable", "alsoResize", { }); }; - if (typeof(o.alsoResize) == 'object') { + if (typeof(o.alsoResize) == 'object' && !o.alsoResize.parentNode) { $.each(o.alsoResize, function(exp, c) { _alsoResize(exp, c); }); }else{ _alsoResize(o.alsoResize); |