Manukuza Location

Location

const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { update(); } }); }, { threshold: 0.1 }); observer.observe(container);