forked from 0x2620/pandora
add logs entry to debug menu
This commit is contained in:
parent
ec0a33bfdb
commit
49e0ad774e
1 changed files with 5 additions and 0 deletions
|
@ -139,6 +139,7 @@ pandora.ui.mainMenu = function() {
|
||||||
pandora.site.capabilities.canSeeDebugMenu[pandora.user.level]
|
pandora.site.capabilities.canSeeDebugMenu[pandora.user.level]
|
||||||
? [
|
? [
|
||||||
{ id: 'debugMenu', title: 'Debug', items: [
|
{ id: 'debugMenu', title: 'Debug', items: [
|
||||||
|
{ id: 'logs', title: 'View Logs...'},
|
||||||
{ id: 'clearcache', title: 'Clear Cache'},
|
{ id: 'clearcache', title: 'Clear Cache'},
|
||||||
{ id: 'reloadapplication', title: 'Reload Application'},
|
{ id: 'reloadapplication', title: 'Reload Application'},
|
||||||
{ id: 'resetui', title: 'Reset UI Settings'},
|
{ id: 'resetui', title: 'Reset UI Settings'},
|
||||||
|
@ -266,6 +267,10 @@ pandora.ui.mainMenu = function() {
|
||||||
pandora.api.resetUI({}, function() {
|
pandora.api.resetUI({}, function() {
|
||||||
pandora.$ui.appPanel.reload();
|
pandora.$ui.appPanel.reload();
|
||||||
});
|
});
|
||||||
|
} else if (data.id == 'logs') {
|
||||||
|
(pandora.$ui.logsDialog || (
|
||||||
|
pandora.$ui.logsDialog = pandora.ui.logsDialog())
|
||||||
|
).open();
|
||||||
} else if (data.id == 'debug') {
|
} else if (data.id == 'debug') {
|
||||||
if(localStorage.debug) {
|
if(localStorage.debug) {
|
||||||
delete localStorage.debug;
|
delete localStorage.debug;
|
||||||
|
|
Loading…
Reference in a new issue