blob: dbea8656150e6a9969fb4db54f0d9b6e6b0091ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
document.addEventListener('DOMContentLoaded', function () {
// 'Back to top' logic
const intersectionObserver = new IntersectionObserver(function(entries) {
const topBtn = document.querySelector('.top-of-site-link');
if (topBtn === null) return;
topBtn.dataset.visible = entries[0].boundingClientRect.y < 0;
});
const topAnchor = document.querySelector('#top-of-site-anchor');
if (topAnchor !== null) {
intersectionObserver.observe(topAnchor);
}
});
|