(node: HTMLElement, smooth?: boolean)
| 12 | } |
| 13 | |
| 14 | export function scrollToTop(node: HTMLElement, smooth?: boolean) { |
| 15 | if (node) { |
| 16 | if (node.scroll && smooth) { |
| 17 | node.scroll({ |
| 18 | top: 0, |
| 19 | behavior: 'smooth', |
| 20 | }); |
| 21 | } else { |
| 22 | node.scrollTop = 0; |
| 23 | } |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | const SCROLL_AT_BOTTOM_TOLERANCE = 3; |
| 28 |