Files
xrpl-dev-portal/js/fixsidebarscroll.js
2015-02-03 00:24:44 -08:00

10 lines
327 B
JavaScript

$(window).scroll(function() {
var footerpos = parseInt($(".footer").offset().top);
var scrollpos = $(window).scrollTop() + $(window).height();
if(scrollpos - footerpos > 0) {
$(".menubar.fixed").css("margin-bottom", scrollpos-footerpos);
} else {
$(".menubar.fixed").css("margin-bottom", 0);
}
});