mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-09 14:25:50 +00:00
10 lines
327 B
JavaScript
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);
|
|
}
|
|
});
|