()
| 221 | } |
| 222 | |
| 223 | function show() { |
| 224 | if ($scrollbar.dataset.hidden === "false") { |
| 225 | return; |
| 226 | } |
| 227 | $scrollbar.dataset.hidden = false; |
| 228 | clearTimeout(scrollbarTimeoutHide); |
| 229 | clearTimeout(scrollbarTimeoutRemove); |
| 230 | $scrollbar.classList.remove("hide"); |
| 231 | if (!$scrollbar.isConnected) { |
| 232 | options.parent.append($scrollbar); |
| 233 | if (typeof onshow === "function") onshow(); |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | function hide() { |
| 238 | if (touchStarted) return; |
no test coverage detected