2016-06-22 21:35:40 +02:00
|
|
|
(function($) {
|
2017-08-11 21:12:34 +02:00
|
|
|
"use strict"; // Start of use strict
|
2016-06-22 21:35:40 +02:00
|
|
|
|
2017-08-11 21:12:34 +02:00
|
|
|
// Smooth scrolling using jQuery easing
|
2017-08-19 23:01:59 +02:00
|
|
|
$('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function() {
|
2017-08-11 21:12:34 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-08-13 03:01:38 +02:00
|
|
|
|
2017-08-19 23:01:59 +02:00
|
|
|
// Closes responsive menu when a scroll trigger link is clicked
|
2017-08-19 23:15:25 +02:00
|
|
|
$('.js-scroll-trigger').click(function() {
|
2017-08-19 23:01:59 +02:00
|
|
|
$('.navbar-collapse').collapse('hide');
|
|
|
|
});
|
|
|
|
|
2017-08-11 21:12:34 +02:00
|
|
|
// Activate scrollspy to add active class to navbar items on scroll
|
|
|
|
$('body').scrollspy({
|
|
|
|
target: '#mainNav',
|
|
|
|
offset: 54
|
|
|
|
});
|
2016-06-22 21:35:40 +02:00
|
|
|
|
2017-09-27 07:27:36 +02:00
|
|
|
var navbarCollapse = function() {
|
2017-08-11 21:12:34 +02:00
|
|
|
if ($("#mainNav").offset().top > 100) {
|
|
|
|
$("#mainNav").addClass("navbar-shrink");
|
|
|
|
} else {
|
|
|
|
$("#mainNav").removeClass("navbar-shrink");
|
|
|
|
}
|
2017-09-27 07:27:36 +02:00
|
|
|
};
|
|
|
|
// Collapse now if page is not at top
|
|
|
|
navbarCollapse();
|
|
|
|
// Collapse the navbar when page is scrolled
|
|
|
|
$(window).scroll(navbarCollapse);
|
2014-08-13 03:01:38 +02:00
|
|
|
|
2016-06-22 21:35:40 +02:00
|
|
|
})(jQuery); // End of use strict
|