952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
24 lines
693 B
JavaScript
24 lines
693 B
JavaScript
/* SCROLLING NAVBAR */
|
|
//jQuery to collapse the navbar on scroll
|
|
$(window).scroll(function () {
|
|
if ($(".navbar").offset()) {
|
|
if ($(".navbar").offset().top > 50) {
|
|
$(".scrolling-navbar").addClass("top-nav-collapse");
|
|
} else {
|
|
$(".scrolling-navbar").removeClass("top-nav-collapse");
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
//jQuery for page scrolling feature - requires jQuery Easing plugin
|
|
$(function () {
|
|
$('a.page-scroll').bind('click', function (event) {
|
|
var $anchor = $(this);
|
|
$('html, body').stop().animate({
|
|
scrollTop: $($anchor.attr('href')).offset().top
|
|
}, 1500, 'easeInOutExpo');
|
|
event.preventDefault();
|
|
});
|
|
});
|