ef8b17e040
Also added blueprint configuration to turn in on from the admin. Disabled by default. Uses https://github.com/bigspotteddog/ScrollToFixed
15 lines
385 B
JavaScript
15 lines
385 B
JavaScript
$(document).ready(function() {
|
|
var navbar = $('#navbar');
|
|
var navbarOffset = navbar.offset().top;
|
|
|
|
$(window).scroll(function(){
|
|
var scroll = $(window).scrollTop();
|
|
|
|
if (scroll >= navbarOffset) {
|
|
navbar.height(navbar.height());
|
|
navbar.addClass('fixed');
|
|
} else {
|
|
navbar.removeClass('fixed');
|
|
}
|
|
});
|
|
});
|