a tool for shared writing and social publishing
at 2beaa0d73046a1b02fcf2f6ad1989de421eacc00 10 lines 299 B view raw
1import { scrollIntoViewIfNeeded } from "./scrollIntoViewIfNeeded"; 2 3export function scrollIntoView( 4 elementId: string, 5 scrollContainerId: string = "pages", 6 threshold: number = 0.9, 7) { 8 const element = document.getElementById(elementId); 9 scrollIntoViewIfNeeded(element, false, "smooth"); 10}