aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontpage/assets/js/to-top.js
blob: 3287f433f0247bf3327fea583549c188e3358851 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var topbutton = document.getElementById('toTop');

if (topbutton !== null) {

  topbutton.style.display = 'none';
  window.onscroll = function() {
    scrollFunction()
  };

}

function scrollFunction() {

  if (document.body.scrollTop > 40 || document.documentElement.scrollTop > 40) {
    topbutton.style.display = 'block';
  } else {
    topbutton.style.display = 'none';
  }

}