From 551e43ad47b586ea4062b613635170abd8ae2de0 Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 2 Aug 2013 10:26:09 +0000 Subject: [PATCH] add (not yet functional) 'Disable Cache' menu entry (see ticket 1420) --- static/js/mainMenu.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/js/mainMenu.js b/static/js/mainMenu.js index c7efe1de..a583a482 100644 --- a/static/js/mainMenu.js +++ b/static/js/mainMenu.js @@ -209,6 +209,7 @@ pandora.ui.mainMenu = function() { pandora.site.capabilities.canSeeDebugMenu[pandora.user.level] ? [ { id: 'debugMenu', title: Ox._('Debug'), items: [ + { id: 'cache', title: Ox._('Disable Cache'), disabled: true}, { id: 'clearcache', title: Ox._('Clear Cache')}, {}, { id: 'debugmode', title: Ox._((pandora.localStorage('enableDebugMode') ? 'Disable' : 'Enable') + ' Debug Mode') },