From 8f97c6c15b8f86d54ede775828bfbd15e5d6a32e Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Fri, 23 Oct 2015 20:16:04 +0300 Subject: Revert "luci-theme-material: do not infer login state from url (#520)" This reverts commit f9e590aa4741bf337029be3f374a33543cc3f37b in order to enable a clean merge of the PR #521 from the theme author. Signed-off-by: Hannu Nyman --- themes/luci-theme-material/htdocs/luci-static/material/js/script.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'themes/luci-theme-material/htdocs/luci-static') diff --git a/themes/luci-theme-material/htdocs/luci-static/material/js/script.js b/themes/luci-theme-material/htdocs/luci-static/material/js/script.js index fdd23e8cd2..a0f067595b 100755 --- a/themes/luci-theme-material/htdocs/luci-static/material/js/script.js +++ b/themes/luci-theme-material/htdocs/luci-static/material/js/script.js @@ -144,10 +144,11 @@ function getCurrentNodeByUrl() { var ret = false; var getUrlNode = function (href){ - if (!$('body').hasClass('logged-in')){ + var linkPos = href.indexOf(";"); + if (linkPos == -1){ return "login"; }else{ - var linkPos = href.indexOf("/", linkPos); + linkPos = href.indexOf("/", linkPos); if (linkPos == -1){ return "overview"; }else{ -- cgit v1.2.3