All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.selection.remove.js Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy