Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2783 from MauriceG/patch-14
Browse files Browse the repository at this point in the history
fix for issue #2776: Select full page menus background wrong color.
  • Loading branch information
Wilto committed Oct 20, 2011
2 parents efe1896 + 6e536eb commit 0a84a9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/jquery.mobile.dialog.js
Expand Up @@ -9,7 +9,7 @@
$.widget( "mobile.dialog", $.mobile.widget, {
options: {
closeBtnText : "Close",
theme : "a",
dialogTheme : "a",
initSelector : ":jqmData(role='dialog')"
},
_create: function() {
Expand All @@ -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
Expand Down

0 comments on commit 0a84a9e

Please sign in to comment.