Spaces:
Running
Running
File size: 289 Bytes
e7b2eb4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import "selection";
// TODO remove(selector)?
// TODO remove(node)?
// TODO remove(function)?
d3_selectionPrototype.remove = function() {
return this.each(d3_selectionRemove);
};
function d3_selectionRemove() {
var parent = this.parentNode;
if (parent) parent.removeChild(this);
}
|