Remove pre-compiled site

This commit is contained in:
Matthew Grove
2019-02-26 12:00:27 +00:00
parent 37d9672892
commit 00690041b1
26 changed files with 0 additions and 1883 deletions

View File

@@ -1,13 +0,0 @@
$(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);
}