mirror of
https://git.proxmox.com/git/proxmox-offline-mirror
synced 2025-04-28 11:39:42 +00:00
8 lines
295 B
JavaScript
8 lines
295 B
JavaScript
window.addEventListener('DOMContentLoaded', (event) => {
|
|
let activeSection = document.querySelector("a.current");
|
|
if (activeSection) {
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView
|
|
activeSection.scrollIntoView({ block: 'center' });
|
|
}
|
|
});
|