diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-07-12 00:14:19 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-07-12 00:14:19 +0000 |
commit | ac6189fd5758e8c98c40d4fc1274cb4202b35cb5 (patch) | |
tree | c53280f7812fefbdec0ac21e665f29993022bb68 /ui/ui.dialog.js | |
parent | 3bc322fd375e5f26c39d9620a64e0788f18acef5 (diff) | |
download | jquery-ui-ac6189fd5758e8c98c40d4fc1274cb4202b35cb5.tar.gz jquery-ui-ac6189fd5758e8c98c40d4fc1274cb4202b35cb5.zip |
Dialog: Fixed #3013: Force dialog titlebars to have a full line height when no title is provided (after initialization).
Diffstat (limited to 'ui/ui.dialog.js')
-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 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); |