From ac6189fd5758e8c98c40d4fc1274cb4202b35cb5 Mon Sep 17 00:00:00 2001 From: Scott González Date: Sat, 12 Jul 2008 00:14:19 +0000 Subject: Dialog: Fixed #3013: Force dialog titlebars to have a full line height when no title is provided (after initialization). --- ui/ui.dialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui') diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js index 72091e89d..42a06daa5 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -184,7 +184,7 @@ $.widget("ui.dialog", { this.uiDialog.resizable(value ? 'enable' : 'disable'); break; case "title": - $(".ui-dialog-title", this.uiDialogTitlebar).text(value); + $(".ui-dialog-title", this.uiDialogTitlebar).html(value || ' '); break; case "width": this.uiDialog.width(value); -- cgit v1.2.3