1// smooth scrolling when clicking an anchor link
2$('.nav-item a').on('click', function () {
3 if (location.pathname.replace(/^\//, '') === this.pathname.replace(/^\//, '') && location.hostname === this.hostname) {
4 let target = $(this.hash);
5 target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
6 if (target.length) {
7 html_body.animate({
8 scrollTop: target.offset().top - 0
9 }, 1500);
10 return false;
11 }
12
13 }
14});