Prevent demo anchor links from scrolling to page top in styleguide
This commit is contained in:
parent
5515910a6a
commit
5959333c4a
1 changed files with 5 additions and 0 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue