()
| 235 | } |
| 236 | |
| 237 | function hide() { |
| 238 | if (touchStarted) return; |
| 239 | $scrollbar.dataset.hidden = true; |
| 240 | $scrollbar.classList.add("hide"); |
| 241 | scrollbarTimeoutRemove = setTimeout(() => $scrollbar.remove(), 300); |
| 242 | if (typeof onhide === "function") onhide(); |
| 243 | } |
| 244 | |
| 245 | function hideImmediately() { |
| 246 | $scrollbar.dataset.hidden = true; |