mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-09 22:35:49 +00:00
8 lines
253 B
JavaScript
8 lines
253 B
JavaScript
$(window).scroll(function() {
|
|
if($(window).scrollTop() + $(window).height() > $(document).height() - 183) {
|
|
$(".menubar.fixed").addClass("leaveroomforfooter");
|
|
} else {
|
|
$(".menubar.fixed").removeClass("leaveroomforfooter");
|
|
}
|
|
});
|