Files
core/hwe/ts/util/scrollHardTo.ts
T

9 lines
218 B
TypeScript

export function scrollHardTo(elementId: string): void {
const element = document.getElementById(elementId);
if(!element){
return;
}
element.scrollIntoView({
behavior: 'auto',
});
}