diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-01-03 14:43:50 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-01-03 14:43:50 +0000 |
commit | 311c0267981f03bda8a994c5a9a84632bd508b55 (patch) | |
tree | e6284e75e79bbbf8b128e92e67260115db8e0afa | |
parent | 3c3e17cdd0d24dd669ee7b1bd01f0c12a84c815c (diff) | |
download | jquery-ui-311c0267981f03bda8a994c5a9a84632bd508b55.tar.gz jquery-ui-311c0267981f03bda8a994c5a9a84632bd508b55.zip |
Dialog: Fixed #3756: Wrong height on every other open.
-rw-r--r-- | ui/ui.dialog.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js index 8b68dc4d5..c10849c10 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -438,6 +438,7 @@ $.widget("ui.dialog", { // reset content sizing this.element.css({ height: 0, + minHeight: 0, width: 'auto' }); |