Adds active class to current nav-item

This commit is contained in:
billz 2019-10-24 22:23:57 +01:00
parent a126b9c8c2
commit 46da9b91e7

View File

@ -279,6 +279,14 @@ $(window).resize(function() {
};
});
// Adds active class to current nav-item
$(window).bind("load", function() {
var url = window.location;
$('ul.navbar-nav a').filter(function() {
return this.href == url;
}).parent().addClass('active');
});
$(document)
.ajaxSend(setCSRFTokenHeader)
.ready(contentLoaded)