Spaces:
Sleeping
Sleeping
File size: 238 Bytes
e7b2eb4 | 1 2 3 4 5 6 7 8 9 10 | import "transition";
d3_transitionPrototype.remove = function() {
var ns = this.namespace;
return this.each("end.transition", function() {
var p;
if (this[ns].count < 2 && (p = this.parentNode)) p.removeChild(this);
});
};
|