//set up the theme switcher on the homepage $('div').live('pagecreate',function(event){ if( !$(this).is('.ui-dialog')){ var appendEl = $(this).find('.ui-footer:last'); if( !appendEl.length ){ appendEl = $(this).find('.ui-content'); } $('Switch theme') .buttonMarkup({ 'icon':'gear', 'inline': true, 'shadow': false, 'theme': 'd' }) .appendTo( appendEl ) .wrap('
') .bind( "vclick", function(){ $.themeswitcher(); }); } event.stopPropagation(); }); //collapse page navs after use $(function(){ $('body').delegate('.content-secondary .ui-collapsible-content', 'vclick', function(){ $(this).trigger("collapse") }); }); function setDefaultTransition(){ $.mobile.defaultPageTransition = $( window ).width() >= 650 ? "fade" : "slide"; } //set default documentation $( document ).bind( "mobileinit", setDefaultTransition ); $(function(){ $( window ).bind( "throttledresize", setDefaultTransition ); });