(event, d)
| 2775 | } |
| 2776 | |
| 2777 | function touchstarted(event, d) { |
| 2778 | if (!filter.call(this, event, d)) return; |
| 2779 | var touches = event.changedTouches, |
| 2780 | c = container.call(this, event, d), |
| 2781 | n = touches.length, i, gesture; |
| 2782 | |
| 2783 | for (i = 0; i < n; ++i) { |
| 2784 | if (gesture = beforestart(this, c, event, d, touches[i].identifier, touches[i])) { |
| 2785 | nopropagation$2(event); |
| 2786 | gesture("start", event, touches[i]); |
| 2787 | } |
| 2788 | } |
| 2789 | } |
| 2790 | |
| 2791 | function touchmoved(event) { |
| 2792 | var touches = event.changedTouches, |
nothing calls this directly
no test coverage detected