(touch, other)
| 3451 | return touch.radiusX <= 1 && touch.radiusY <= 1; |
| 3452 | } |
| 3453 | function farAway(touch, other) { |
| 3454 | if (other.left == null) return true; |
| 3455 | var dx = other.left - touch.left, dy = other.top - touch.top; |
| 3456 | return dx * dx + dy * dy > 20 * 20; |
| 3457 | } |
| 3458 | on(d.scroller, "touchstart", function(e) { |
| 3459 | if (!signalDOMEvent(cm, e) && !isMouseLikeTouchEvent(e)) { |
| 3460 | clearTimeout(touchFinished); |
no outgoing calls
no test coverage detected