()
| 1298 | translate0 = null; |
| 1299 | } |
| 1300 | function dblclicked() { |
| 1301 | var p = d3.mouse(this), l = location(p), k = Math.log(scale) / Math.LN2; |
| 1302 | scaleTo(Math.pow(2, d3.event.shiftKey ? Math.ceil(k) - 1 : Math.floor(k) + 1)); |
| 1303 | translateTo(p, l); |
| 1304 | dispatch(event.of(this, arguments)); |
| 1305 | } |
| 1306 | return d3.rebind(zoom, event, "on"); |
| 1307 | }; |
| 1308 | var d3_behavior_zoomInfinity = [ 0, Infinity ]; |
nothing calls this directly
no test coverage detected