summaryrefslogtreecommitdiffhomepage
path: root/themes/luci-theme-material/htdocs
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2015-10-23 20:16:04 +0300
committerHannu Nyman <hannu.nyman@iki.fi>2015-10-23 20:16:04 +0300
commit8f97c6c15b8f86d54ede775828bfbd15e5d6a32e (patch)
treea87f4ecbc2329cc95f7c5ddc5495e9df6747b36f /themes/luci-theme-material/htdocs
parentf9e590aa4741bf337029be3f374a33543cc3f37b (diff)
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 <hannu.nyman@iki.fi>
Diffstat (limited to 'themes/luci-theme-material/htdocs')
-rwxr-xr-xthemes/luci-theme-material/htdocs/luci-static/material/js/script.js5
1 files changed, 3 insertions, 2 deletions
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{