diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-07-11 00:44:33 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-07-11 00:44:33 +0000 |
commit | bb0cac9cb9d3a1de67999220c38aad42af17da0b (patch) | |
tree | 3b999e2b85c98e9e1445787471835be71fe66ff7 | |
parent | c5352d82b5fc768e50a2fc47e7042d769792feb7 (diff) | |
download | jquery-ui-bb0cac9cb9d3a1de67999220c38aad42af17da0b.tar.gz jquery-ui-bb0cac9cb9d3a1de67999220c38aad42af17da0b.zip |
Dialog: Fixed #3013: Force dialog titlebars to have a full line height when no title is provided.
-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 7a80ad7e1..72091e89d 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -48,7 +48,7 @@ $.widget("ui.dialog", { height: '100%' }), - title = options.title || uiDialogContent.attr('title') || '', + title = options.title || uiDialogContent.attr('title') || ' ', uiDialogTitlebar = (this.uiDialogTitlebar = $('<div class="ui-dialog-titlebar"/>')) .append('<span class="ui-dialog-title">' + title + '</span>') |