mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-26 23:04:00 +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, {
|
$.widget( "mobile.dialog", $.mobile.widget, {
|
||||||
options: {
|
options: {
|
||||||
closeBtnText : "Close",
|
closeBtnText : "Close",
|
||||||
theme : "a",
|
dialogTheme : "a",
|
||||||
initSelector : ":jqmData(role='dialog')"
|
initSelector : ":jqmData(role='dialog')"
|
||||||
},
|
},
|
||||||
_create: function() {
|
_create: function() {
|
||||||
|
|
@ -22,7 +22,7 @@ $.widget( "mobile.dialog", $.mobile.widget, {
|
||||||
$el.removeClass( pageTheme[ 0 ] );
|
$el.removeClass( pageTheme[ 0 ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
$el.addClass( "ui-body-" + this.options.theme );
|
$el.addClass( "ui-body-" + this.options.dialogTheme );
|
||||||
|
|
||||||
// Class the markup for dialog styling
|
// Class the markup for dialog styling
|
||||||
// Set aria role
|
// Set aria role
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue