diff options
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.dialog.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js index df11e2190..44f5cbbbc 100644 --- a/ui/jquery.ui.dialog.js +++ b/ui/jquery.ui.dialog.js @@ -628,6 +628,10 @@ $.widget("ui.dialog", { height: 0 }); + if (options.minWidth > options.width) { + options.width = options.minWidth; + } + // reset wrapper sizing // determine the height of all the non-content elements nonContentHeight = this.uiDialog.css({ |