Rework datetime input

This commit is contained in:
Jon Staab
2025-02-05 15:05:58 -08:00
parent 131cc99c47
commit 65aabf5feb
7 changed files with 78 additions and 62 deletions
-2
View File
@@ -21,7 +21,6 @@ export type ScrollerOpts = {
onScroll: () => any
element: Element
threshold?: number
reverse?: boolean
delay?: number
}
@@ -35,7 +34,6 @@ export const createScroller = ({
element,
delay = 1000,
threshold = 2000,
reverse = false,
}: ScrollerOpts) => {
let done = false