1
0
mirror of https://github.com/hacks-guide/Guide_3DS.git synced 2025-08-29 19:29:51 +02:00

more strict URL check

This commit is contained in:
Plailect
2017-09-30 16:52:00 -04:00
committed by Plailect
parent 74d3783fb6
commit 093ed8fade
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