952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
13 lines
317 B
JavaScript
13 lines
317 B
JavaScript
/* SCROLLING NAVBAR */
|
|
const OFFSET_TOP = 50
|
|
|
|
$(window).scroll(function () {
|
|
if($('.navbar').length) {
|
|
if ($('.navbar').offset().top > OFFSET_TOP) {
|
|
$('.scrolling-navbar').addClass("top-nav-collapse");
|
|
} else {
|
|
$('.scrolling-navbar').removeClass("top-nav-collapse");
|
|
}
|
|
}
|
|
});
|