mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
Merge pull request #2783 from MauriceG/patch-14
fix for issue #2776: Select full page menus background wrong color.
This commit is contained in:
commit
0a84a9eeea
1 changed files with 2 additions and 2 deletions
|
|
@ -9,7 +9,7 @@
|
|||
$.widget( "mobile.dialog", $.mobile.widget, {
|
||||
options: {
|
||||
closeBtnText : "Close",
|
||||
theme : "a",
|
||||
dialogTheme : "a",
|
||||
initSelector : ":jqmData(role='dialog')"
|
||||
},
|
||||
_create: function() {
|
||||
|
|
@ -22,7 +22,7 @@ $.widget( "mobile.dialog", $.mobile.widget, {
|
|||
$el.removeClass( pageTheme[ 0 ] );
|
||||
}
|
||||
|
||||
$el.addClass( "ui-body-" + this.options.theme );
|
||||
$el.addClass( "ui-body-" + this.options.dialogTheme );
|
||||
|
||||
// Class the markup for dialog styling
|
||||
// Set aria role
|
||||
|
|
|
|||
Loading…
Reference in a new issue