()
| 7263 | } |
| 7264 | return d3_transition_tween(this, "style." + name, value, function(b) { |
| 7265 | function styleString() { |
| 7266 | var a = d3_window.getComputedStyle(this, null).getPropertyValue(name), i; |
| 7267 | return a !== b && (i = interpolate(a, b), function(t) { |
| 7268 | this.style.setProperty(name, i(t), priority); |
| 7269 | }); |
| 7270 | } |
| 7271 | return b == null ? styleNull : (b += "", styleString); |
| 7272 | }); |
| 7273 | }; |
nothing calls this directly
no test coverage detected