diff --git a/public/app/core/components/grafana_app.ts b/public/app/core/components/grafana_app.ts index 48b1ff60be2..ed3425f670f 100644 --- a/public/app/core/components/grafana_app.ts +++ b/public/app/core/components/grafana_app.ts @@ -107,6 +107,11 @@ export function grafanaAppDirective(playlistSrv, contextSrv) { body.addClass(pageClass); } $("#tooltip, .tooltip").remove(); + + // check for kiosk url param + if (data.params.kiosk) { + appEvents.emit('toggle-kiosk-mode'); + } }); // handle kiosk mode @@ -117,7 +122,7 @@ export function grafanaAppDirective(playlistSrv, contextSrv) { // handle in active view state class var lastActivity = new Date().getTime(); var activeUser = true; - var inActiveTimeLimit = 2 * 60 * 1000; + var inActiveTimeLimit = 60 * 1000; function checkForInActiveUser() { if (!activeUser) { diff --git a/public/app/core/components/help/help.html b/public/app/core/components/help/help.html index d81daae4708..c441a6b88f3 100644 --- a/public/app/core/components/help/help.html +++ b/public/app/core/components/help/help.html @@ -1,17 +1,17 @@