fix: scroll to location.hash after load (fixes WEB-4)

This commit is contained in:
Oliver Booth 2023-09-27 13:12:17 +01:00
parent d80a00e97e
commit 942b48000d
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
1 changed files with 7 additions and 0 deletions

View File

@ -53,6 +53,13 @@ declare const Prism: any;
API.getBlogPost(id).then((post) => {
blogPost.innerHTML = post.content;
UI.updateUI(blogPost);
if (location.hash && location.hash !== '#' && location.hash.startsWith('#')) {
const element = document.querySelector(location.hash);
if (element) {
setTimeout(() => element.scrollIntoView(), 1000);
}
}
});
}