more strict URL check

This commit is contained in:
Plailect 2017-09-30 16:52:00 -04:00
parent 126bb12eed
commit 4374f1317e
2 changed files with 5 additions and 2 deletions

View file

@ -209,7 +209,10 @@ $(document).ready(function(){
ol.children().each(function(idx, li) {
var link = $(li).find("a").attr('href');
var name = $(li).attr('data-name');
if(window.location.href.indexOf(link) > -1 && name !== "home"){
if((window.location.href.endsWith(link) ||
window.location.href.endsWith(link + "/") ||
window.location.href.indexOf(link + "#") > -1)
&& name !== "home"){
$(li).addClass("active");
return false;
}

File diff suppressed because one or more lines are too long