(touch, other)
| 3430 | return touch.radiusX <= 1 && touch.radiusY <= 1; |
| 3431 | } |
| 3432 | function farAway(touch, other) { |
| 3433 | if (other.left == null) return true; |
| 3434 | var dx = other.left - touch.left, dy = other.top - touch.top; |
| 3435 | return dx * dx + dy * dy > 20 * 20; |
| 3436 | } |
| 3437 | on(d.scroller, "touchstart", function(e) { |
| 3438 | if (!signalDOMEvent(cm, e) && !isMouseLikeTouchEvent(e)) { |
| 3439 | clearTimeout(touchFinished); |
no outgoing calls
no test coverage detected