diff options
author | Richard Worth <rdworth@gmail.com> | 2008-07-03 14:23:28 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-07-03 14:23:28 +0000 |
commit | 069fcab637893d464a397db40780cbcfb4615eaf (patch) | |
tree | e5c4828e314a59fc8034211eb40ec16077883dff /ui/ui.dialog.js | |
parent | cbda2f35ae18b10d2ca1904af9b2d156dc909b2b (diff) | |
download | jquery-ui-069fcab637893d464a397db40780cbcfb4615eaf.tar.gz jquery-ui-069fcab637893d464a397db40780cbcfb4615eaf.zip |
fixed #3061 - dialog buttons not visible without a theme file
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 27123b933..bebc5042d 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -80,7 +80,7 @@ $.widget("ui.dialog", { }), uiDialogButtonPane = (this.uiDialogButtonPane = $('<div/>')) - .addClass('ui-dialog-buttonpane') + .addClass('ui-dialog-buttonpane').css({ position: 'absolute', bottom: 0 }) .appendTo(uiDialog); this.uiDialogTitlebarClose = $('.ui-dialog-titlebar-close', uiDialogTitlebar) |