diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-12-23 04:23:19 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-12-23 04:23:19 +0000 |
commit | 62bf1dd3bd71787361d9dcddf1e5e040c4009f35 (patch) | |
tree | 6283f24f7497cd2e2e6c763b9da725ca265216ad /ui/ui.dialog.js | |
parent | 9924fb33c78162af7f43daf0f2ffd74ac0e823c4 (diff) | |
download | jquery-ui-62bf1dd3bd71787361d9dcddf1e5e040c4009f35.tar.gz jquery-ui-62bf1dd3bd71787361d9dcddf1e5e040c4009f35.zip |
Dialog: Setting the correct element for alsoResize.
Diffstat (limited to 'ui/ui.dialog.js')
-rw-r--r-- | ui/ui.dialog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js index de463567b..70b4bbd16 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: '.ui-dialog-content', + alsoResize: this.element, helper: options.resizeHelper, maxWidth: options.maxWidth, maxHeight: options.maxHeight, |