aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2008-12-23 04:32:44 +0000
committerScott González <scott.gonzalez@gmail.com>2008-12-23 04:32:44 +0000
commit5e936731bd4fb7a9cb14c39554d6c26e4ef042c6 (patch)
tree68634f302d364d6ac07b1faf78463728e45ac76e /ui
parentca14d8cd66741330243c12698c27dc77953737e4 (diff)
downloadjquery-ui-5e936731bd4fb7a9cb14c39554d6c26e4ef042c6.tar.gz
jquery-ui-5e936731bd4fb7a9cb14c39554d6c26e4ef042c6.zip
Dialog: Passing in a DOMElement instead of a jQuery object for alsoResize to avoid resizable bug.
Diffstat (limited to 'ui')
-rw-r--r--ui/ui.dialog.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js
index 70b4bbd16..903ab1dad 100644
--- a/ui/ui.dialog.js
+++ b/ui/ui.dialog.js
@@ -312,7 +312,7 @@ $.widget("ui.dialog", {
this.uiDialog.resizable({
cancel: '.ui-dialog-content',
- alsoResize: this.element,
+ alsoResize: this.element[0],
helper: options.resizeHelper,
maxWidth: options.maxWidth,
maxHeight: options.maxHeight,