diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-12-23 14:55:41 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-12-23 14:55:41 +0000 |
commit | 22ca3849f7d2dde79c7eacdf7204438cfa075549 (patch) | |
tree | fa7e47c210eccc9bb6459d851273ab34f0f409d1 /ui/ui.resizable.js | |
parent | 8a01ecf52fbcd5271e3dd2b0cf32092b30aae1f8 (diff) | |
download | jquery-ui-22ca3849f7d2dde79c7eacdf7204438cfa075549.tar.gz jquery-ui-22ca3849f7d2dde79c7eacdf7204438cfa075549.zip |
Resizable: Partial fix for supporting jQuery objects in alsoResize.
Dialog: Fixed bug with content resizing.
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 84cd6e4b5..c7b8524e3 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' && !o.alsoResize.parentNode) { + if (typeof(o.alsoResize) == 'object' && !o.alsoResize.nodeType) { $.each(o.alsoResize, function(exp, c) { _alsoResize(exp, c); }); }else{ _alsoResize(o.alsoResize); |