pages can also end in .html

This commit is contained in:
Plailect 2017-09-30 17:36:31 -04:00
parent f887578f57
commit 9b57f8f0f1
2 changed files with 3 additions and 2 deletions

View file

@ -211,7 +211,8 @@ $(document).ready(function(){
var name = $(li).attr('data-name');
if((window.location.href.endsWith(link) ||
window.location.href.endsWith(link + "/") ||
window.location.href.indexOf(link + "#") > -1)
window.location.href.indexOf(link + "#") > -1 ||
window.location.href.indexOf(link + ".html") > -1)
&& name !== "home"){
$(li).addClass("active");
return false;

File diff suppressed because one or more lines are too long