This commit is contained in:
McShelby 2023-02-04 12:40:52 +00:00
parent 38955e92a5
commit 015688cbdd
355 changed files with 7887 additions and 7885 deletions

View file

@ -803,12 +803,14 @@ function scrollToFragment() {
return;
}
window.setTimeout(function(){
var e = document.querySelector( window.location.hash );
if( e && e.scrollIntoView ){
e.scrollIntoView({
block: 'start',
});
}
try{
var e = document.querySelector( window.location.hash );
if( e && e.scrollIntoView ){
e.scrollIntoView({
block: 'start',
});
}
} catch( e ){}
}, 10);
}