()
| 78 | } |
| 79 | |
| 80 | function scrollToBottom() { |
| 81 | if (!scrollRef || state.userScrolled || !working() || state.autoScrolling) return |
| 82 | setState("autoScrolling", true) |
| 83 | requestAnimationFrame(() => { |
| 84 | scrollRef?.scrollTo({ top: scrollRef.scrollHeight, behavior: "auto" }) |
| 85 | requestAnimationFrame(() => { |
| 86 | setState("autoScrolling", false) |
| 87 | }) |
| 88 | }) |
| 89 | } |
| 90 | |
| 91 | createEffect(() => { |
| 92 | if (!working()) { |