$('a[href*=\\#]').on('click', function (event) {
if (isMobile) {
if(this.pathname === window.location.pathname){
$('.navbar-collapse').collapse('hide');
$( ".navbar-toggle" ).removeClass( "toggle" );
}
}
});
$('.nav a').on('click', function(){
$('.btn-navbar').click(); //bootstrap 2.x
$('.navbar-toggle').click(); //bootstrap 3.x by Richard
$('.navbar-toggler').click(); //bootstrap 4.x
});
jQuery(function ($) {
var navbarHeight = $(".navbar").outerHeight();
var $menuTrigger = $(".menu-trigger");
$("[data-sm]").smoothScroll({
offset: 1 - navbarHeight,
beforeScroll: function () {
if (isMobile()) {
$menuTrigger[0].click();
}
},
});
});