Files
core_ng/server/util/scrollHardTo.ts
T
2023-08-05 12:12:18 +00:00

10 lines
237 B
TypeScript

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