File size: 297 Bytes
e7b2eb4
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import "selection";

d3_selectionPrototype.insert = function(name, before) {
  name = d3_selection_creator(name);
  before = d3_selection_selector(before);
  return this.select(function() {
    return this.insertBefore(name.apply(this, arguments), before.apply(this, arguments) || null);
  });
};