blob: fdebd6d1b578ca1b68e19bdabdb0340f98127d07 (
plain) (
tree)
|
|
(function(){
λ.topbar = topbar = {};
topbar.update = function(){
console.log('topbar update');
$('ul.nav li a').each(function(){
if (this.href === window.location.href) {
$(this).parent().addClass('active');
} else {
$(this).parent().removeClass('active');
}
});
};
}());
|