This commit is contained in:
rolux 2011-10-28 18:06:40 +00:00
commit 15205875b2

View File

@ -143,7 +143,8 @@ pandora.ui.mainMenu = function() {
{ id: 'debugMenu', title: 'Debug', items: [
{ id: 'clearcache', title: 'Clear Cache'},
{ id: 'reloadapplication', title: 'Reload Application'},
{ id: 'resetui', title: 'Reset UI Settings'}
{ id: 'resetui', title: 'Reset UI Settings'},
{ id: 'debug', title: (localStorage.debug?'Disable':'Enable')+' Debug Mode'}
] }
]
: []
@ -258,6 +259,14 @@ pandora.ui.mainMenu = function() {
pandora.api.resetUI({}, function() {
pandora.$ui.appPanel.reload();
});
} else if (data.id == 'debug') {
if(localStorage.debug) {
delete localStorage.debug;
} else {
localStorage.debug = 1;
}
that.setItemTitle('debug', (localStorage.debug ? 'Disable' : 'Enable') + ' Debug Mode');
}
},
pandora_find: function() {