(function($) { "use strict"; // Start of use strict // Smooth scrolling using jQuery easing $('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function() { if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); if (target.length) { $('html, body').animate({ scrollTop: (target.offset().top - 54) }, 1000, "easeInOutExpo"); return false; } } }); // Hide navbar when modals trigger $('.portfolio-modal').on('show.bs.modal', function(e) { $('.navbar').addClass('d-none'); }) $('.portfolio-modal').on('hidden.bs.modal', function(e) { $('.navbar').removeClass('d-none'); }) })(jQuery); // End of use strict