(d, i)
| 796 | name = d3.ns.qualify(name); |
| 797 | if (typeof before !== "function") before = d3_selection_selector(before); |
| 798 | function insert(d, i) { |
| 799 | return this.insertBefore(d3_document.createElementNS(this.namespaceURI, name), before.call(this, d, i)); |
| 800 | } |
| 801 | function insertNS(d, i) { |
| 802 | return this.insertBefore(d3_document.createElementNS(name.space, name.local), before.call(this, d, i)); |
| 803 | } |
no test coverage detected