mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-24 18:00:28 +00:00
19 lines
No EOL
451 B
JavaScript
19 lines
No EOL
451 B
JavaScript
//set up the theme switcher on the homepage
|
|
$('div').live('pagecreate',function(event){
|
|
if( !$(this).is('.ui-dialog')){
|
|
$('<a href="#">Switch theme</a>')
|
|
.buttonMarkup({
|
|
'icon':'gear',
|
|
'inline': true,
|
|
'shadow': false,
|
|
'theme': 'd'
|
|
})
|
|
.appendTo( $(this).find('.ui-content') )
|
|
.wrap('<div class="jqm-themeswitcher">')
|
|
.click(function(){
|
|
$.themeswitcher();
|
|
return false;
|
|
});
|
|
}
|
|
event.stopPropagation();
|
|
}); |