From bb0cac9cb9d3a1de67999220c38aad42af17da0b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 11 Jul 2008 00:44:33 +0000 Subject: [PATCH] Dialog: Fixed #3013: Force dialog titlebars to have a full line height when no title is provided. --- ui/ui.dialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 + '') -- 2.39.5