Files
core/hwe/ts/util/scrollHardTo.ts
T
2023-03-09 02:17:55 +09: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',
});
}