2019-10-11 01:34:31 +02:00
|
|
|
(function($) {
|
|
|
|
"use strict"; // Start of use strict
|
2019-10-08 19:53:51 +02:00
|
|
|
|
2019-10-11 01:34:31 +02:00
|
|
|
// Toggle the side navigation
|
|
|
|
$("#sidebarToggle, #sidebarToggleTop").on('click', function(e) {
|
|
|
|
$("body").toggleClass("sidebar-toggled");
|
|
|
|
$(".sidebar").toggleClass("toggled");
|
|
|
|
if ($(".sidebar").hasClass("toggled")) {
|
|
|
|
$('.sidebar .collapse').collapse('hide');
|
|
|
|
};
|
|
|
|
});
|
2019-10-08 19:53:51 +02:00
|
|
|
|
2019-10-11 01:34:31 +02:00
|
|
|
// Close any open menu accordions when window is resized below 768px
|
|
|
|
$(window).resize(function() {
|
|
|
|
if ($(window).width() < 768) {
|
|
|
|
$('.sidebar .collapse').collapse('hide');
|
|
|
|
};
|
|
|
|
});
|
2019-10-08 19:53:51 +02:00
|
|
|
|
2019-10-11 01:34:31 +02:00
|
|
|
// Prevent the content wrapper from scrolling when the fixed side navigation hovered over
|
|
|
|
$('body.fixed-nav .sidebar').on('mousewheel DOMMouseScroll wheel', function(e) {
|
|
|
|
if ($(window).width() > 768) {
|
|
|
|
var e0 = e.originalEvent,
|
|
|
|
delta = e0.wheelDelta || -e0.detail;
|
|
|
|
this.scrollTop += (delta < 0 ? 1 : -1) * 30;
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
});
|
2019-10-08 19:53:51 +02:00
|
|
|
|
2019-10-11 01:34:31 +02:00
|
|
|
// Scroll to top button appear
|
|
|
|
$(document).on('scroll', function() {
|
|
|
|
var scrollDistance = $(this).scrollTop();
|
|
|
|
if (scrollDistance > 100) {
|
|
|
|
$('.scroll-to-top').fadeIn();
|
|
|
|
} else {
|
|
|
|
$('.scroll-to-top').fadeOut();
|
2019-10-08 19:53:51 +02:00
|
|
|
}
|
2019-10-11 01:34:31 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Smooth scrolling using jQuery easing
|
|
|
|
$(document).on('click', 'a.scroll-to-top', function(e) {
|
|
|
|
var $anchor = $(this);
|
|
|
|
$('html, body').stop().animate({
|
|
|
|
scrollTop: ($($anchor.attr('href')).offset().top)
|
|
|
|
}, 1000, 'easeInOutExpo');
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
|
|
|
|
|
|
|
})(jQuery); // End of use strict
|