1 d3_transitionPrototype.remove = function() {
2 return this.each("end", function() {
3 var p;
4 if (!this.__transition__ && (p = this.parentNode)) p.removeChild(this);
5 });
6 };