()
| 1188 | translate0 = null; |
| 1189 | } |
| 1190 | function dblclick() { |
| 1191 | var p = d3.mouse(this), l = location(p), k = Math.log(scale) / Math.LN2; |
| 1192 | scaleTo(Math.pow(2, d3.event.shiftKey ? Math.ceil(k) - 1 : Math.floor(k) + 1)); |
| 1193 | translateTo(p, l); |
| 1194 | dispatch(event.of(this, arguments)); |
| 1195 | } |
| 1196 | function touchstart() { |
| 1197 | var touches = d3.touches(this), now = Date.now(); |
| 1198 | scale0 = scale; |
nothing calls this directly
no test coverage detected