Prevent demo anchor links from scrolling to page top in styleguide

This commit is contained in:
russell@unturf.com 2026-03-08 00:03:10 -05:00
parent 5515910a6a
commit 5959333c4a

View file

@ -1153,6 +1153,11 @@ var observer = new IntersectionObserver(function(entries) {
document.querySelectorAll('.reveal, .reveal-scale').forEach(function(el) { document.querySelectorAll('.reveal, .reveal-scale').forEach(function(el) {
observer.observe(el); observer.observe(el);
}); });
// Prevent href="#" demo links from scrolling to top
document.querySelectorAll('a[href="#"]').forEach(function(a) {
a.addEventListener('click', function(e) { e.preventDefault(); });
});
</script> </script>
</body> </body>