OER-WEB-TEAM / design-system--drupal-theme

1 stars 0 forks source link

Back 2 Top button is visible on page load #67

Closed AlexVanK closed 6 days ago

AlexVanK commented 6 days ago

The Back2Top button is visible on page load even if page is not scrolled: image

AlexVanK commented 6 days ago

Adjusted the code to check for initial page scroll on page load, and apply visibility accordingly:

var hidden = window.scrollY >= window.innerHeight ? "" : "hidden";
var buttonHTML = `<button id="back2top" class="btn btn-light ${hidden}"><i class="bi bi-arrow-up-short"></i> Back to Top</button>`;