debug menu: reorder entries

This commit is contained in:
rolux 2013-08-27 14:43:17 +00:00
parent 9f45aa2e2b
commit 63e1158299
1 changed files with 3 additions and 3 deletions

View File

@ -207,9 +207,9 @@ pandora.ui.mainMenu = function() {
pandora.site.capabilities.canSeeDebugMenu[pandora.user.level]
? [
{ id: 'debugMenu', title: Ox._('Debug'), items: [
{ id: 'cache', title: Ox._((pandora.localStorage('enableCache') !== false ? 'Disable' : 'Enable') + ' Cache')},
{ id: 'clearcache', title: Ox._('Clear Cache')},
{},
{ id: 'cache', title: Ox._((pandora.localStorage('enableCache') !== false ? 'Disable' : 'Enable') + ' Cache')},
{ id: 'debugmode', title: Ox._((pandora.localStorage('enableDebugMode') ? 'Disable' : 'Enable') + ' Debug Mode') },
{ id: 'eventlogging', title: Ox._((pandora.localStorage('enableEventLogging') ? 'Disable' : 'Enable') + ' Event Logging')},
{},
@ -460,14 +460,14 @@ pandora.ui.mainMenu = function() {
pandora.$ui.usersDialog = pandora.ui.usersDialog().open();
} else if (data.id == 'statistics') {
pandora.$ui.statisticsDialog = pandora.ui.statisticsDialog().open();
} else if (data.id == 'clearcache') {
Ox.Request.clearCache();
} else if (data.id == 'cache') {
var enabled = pandora.localStorage('enableCache') === false;
pandora.localStorage('enableCache', enabled);
Ox.Request.options({cache: enabled})
that.setItemTitle('cache', Ox._((enabled ? 'Disable' : 'Enable') + ' Cache'));
that[enabled ? 'enableItem' : 'disableItem']('clearcache');
} else if (data.id == 'clearcache') {
Ox.Request.clearCache();
} else if (data.id == 'debugmode') {
if (pandora.localStorage('enableDebugMode')) {
pandora.localStorage['delete']('enableDebugMode');