toolkit/javascript/d3/src/core/transition-remove.js
changeset 47 c0b4a8b5a012
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/toolkit/javascript/d3/src/core/transition-remove.js	Thu Apr 10 14:20:23 2014 +0200
@@ -0,0 +1,6 @@
+d3_transitionPrototype.remove = function() {
+  return this.each("end", function() {
+    var p;
+    if (!this.__transition__ && (p = this.parentNode)) p.removeChild(this);
+  });
+};