blob: 23a504c2e67b06556f0869cb5fd8190b9a8c6094 (
plain)
1
2
3
4
5
6
7
8
|
$(document).bind('mobileinit', function(){
var apptheme = localStorage.getItem('apptheme');
if(apptheme === null || apptheme.length === 0){
apptheme = 'a';
}
$.mobile.page.prototype.options.theme = apptheme;
});
|