From: Scott González Date: Fri, 11 Jul 2008 00:44:33 +0000 (+0000) Subject: Dialog: Fixed #3013: Force dialog titlebars to have a full line height when no title... X-Git-Tag: 1.6rc2~213 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bb0cac9cb9d3a1de67999220c38aad42af17da0b;p=jquery-ui.git Dialog: Fixed #3013: Force dialog titlebars to have a full line height when no title is provided. --- 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 = $('
')) .append('' + title + '')