Update footer to expand grey bar to bottom of page

This commit is contained in:
2020-03-10 07:31:46 +00:00
parent 20bbffd3b5
commit 00c89d770b
66 changed files with 6403 additions and 26 deletions

View File

@@ -0,0 +1,13 @@
$(window).scroll(function() {
if ($(this).scrollTop() >= 55) {
$('.top-scroll-button').fadeIn(500);
}
if ($(this).scrollTop() < 55) {
$('.top-scroll-button').fadeOut(500);
}
});
function scrollUp() {
$('body, html, .mdc-drawer-app-content, #main-content, .mdc-top-app-bar--short-fixed-adjust').animate({
scrollTop: 0
}, 500);
}