diff --git a/static/js/mainMenu.js b/static/js/mainMenu.js index e05ac3a4..d9e10b47 100644 --- a/static/js/mainMenu.js +++ b/static/js/mainMenu.js @@ -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');