952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
14 lines
317 B
JavaScript
Executable File
14 lines
317 B
JavaScript
Executable File
'use strict';
|
|
|
|
/* SCROLLING NAVBAR */
|
|
var 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');
|
|
}
|
|
}
|
|
}); |