2010-10-15 01:56:51 +00:00
|
|
|
//set up the theme switcher on the homepage
|
2010-10-20 16:09:03 +00:00
|
|
|
$('div').live('pagecreate',function(event){
|
2010-11-04 22:50:43 +00:00
|
|
|
if( !$(this).is('.ui-dialog')){
|
2011-02-20 18:46:23 +00:00
|
|
|
$('<a href="#themeswitcher" data-'+ $.mobile.ns +'rel="dialog" data-'+ $.mobile.ns +'transition="pop">Switch theme</a>')
|
2010-10-15 22:03:17 +00:00
|
|
|
.buttonMarkup({
|
|
|
|
|
'icon':'gear',
|
|
|
|
|
'inline': true,
|
|
|
|
|
'shadow': false,
|
|
|
|
|
'theme': 'd'
|
|
|
|
|
})
|
|
|
|
|
.appendTo( $(this).find('.ui-content') )
|
|
|
|
|
.wrap('<div class="jqm-themeswitcher">')
|
|
|
|
|
.click(function(){
|
|
|
|
|
$.themeswitcher();
|
|
|
|
|
});
|
|
|
|
|
}
|
2010-10-20 16:09:03 +00:00
|
|
|
event.stopPropagation();
|
2010-10-15 01:56:51 +00:00
|
|
|
});
|