(event: TouchEvent)
| 299 | this.hasUserControl = true; |
| 300 | } |
| 301 | onDocumentTouchMove(event: TouchEvent) { |
| 302 | if (event.touches.length !== 1) return; |
| 303 | const t = event.touches[0]; |
| 304 | if (!this.updateHoverState(t.clientX, t.clientY)) return; |
| 305 | if (this.onInteract) this.onInteract(); |
| 306 | this.setCoords(t.clientX, t.clientY); |
| 307 | } |
| 308 | onTouchEnd() { |
| 309 | this.isHoverInside = false; |
| 310 | } |
nothing calls this directly
no test coverage detected