diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-10-22 21:07:40 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-10-22 21:08:22 +0200 |
commit | f9e590aa4741bf337029be3f374a33543cc3f37b (patch) | |
tree | e555ea583b6f88262b728dc4c30b7ae43ec98071 /themes/luci-theme-material/htdocs/luci-static | |
parent | 6c4341ee012b1c946f63a39d5b9a4e5b0abc1f75 (diff) |
luci-theme-material: do not infer login state from url (#520)
Checking for `;` in the url is no good indicator whether a user is logged in,
instead query the dispatcher and set a `logged-in` CSS class on the `<body>`
element if a session exists.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'themes/luci-theme-material/htdocs/luci-static')
-rwxr-xr-x | themes/luci-theme-material/htdocs/luci-static/material/js/script.js | 5 |
1 files changed, 2 insertions, 3 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 a0f067595b..fdd23e8cd2 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,11 +144,10 @@ function getCurrentNodeByUrl() { var ret = false; var getUrlNode = function (href){ - var linkPos = href.indexOf(";"); - if (linkPos == -1){ + if (!$('body').hasClass('logged-in')){ return "login"; }else{ - linkPos = href.indexOf("/", linkPos); + var linkPos = href.indexOf("/", linkPos); if (linkPos == -1){ return "overview"; }else{ |