mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
footer: Fix broken anchor link scrolling (#64)
fixes: Footnotes anchor link hrefs such as `#fn:1` fixes: ToC anchors failing with hrefs having numbers. based-on: https://stackoverflow.com/a/51396346/300212
This commit is contained in:
parent
0a7a540761
commit
55107fcfc2
@ -30,8 +30,8 @@
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener("click", function (e) {
|
||||
e.preventDefault();
|
||||
|
||||
document.querySelector(this.getAttribute("href")).scrollIntoView({
|
||||
var id = this.getAttribute("href").substr(1);
|
||||
document.querySelector(`[id='${id}']`).scrollIntoView({
|
||||
behavior: "smooth"
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user