(e)
| 7948 | } |
| 7949 | } |
| 7950 | function isMouseLikeTouchEvent(e) { |
| 7951 | if (e.touches.length != 1) { return false } |
| 7952 | var touch = e.touches[0]; |
| 7953 | return touch.radiusX <= 1 && touch.radiusY <= 1 |
| 7954 | } |
| 7955 | function farAway(touch, other) { |
| 7956 | if (other.left == null) { return true } |
| 7957 | var dx = other.left - touch.left, dy = other.top - touch.top; |
no outgoing calls
no test coverage detected