()
| 1179 | } |
| 1180 | } |
| 1181 | function mousewheel() { |
| 1182 | if (!translate0) translate0 = location(d3.mouse(this)); |
| 1183 | scaleTo(Math.pow(2, d3_behavior_zoomDelta() * .002) * scale); |
| 1184 | translateTo(d3.mouse(this), translate0); |
| 1185 | dispatch(event.of(this, arguments)); |
| 1186 | } |
| 1187 | function mousemove() { |
| 1188 | translate0 = null; |
| 1189 | } |
nothing calls this directly
no test coverage detected