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