()
| 785 | d3_selectionPrototype.append = function(name) { |
| 786 | name = d3.ns.qualify(name); |
| 787 | function append() { |
| 788 | return this.appendChild(d3_document.createElementNS(this.namespaceURI, name)); |
| 789 | } |
| 790 | function appendNS() { |
| 791 | return this.appendChild(d3_document.createElementNS(name.space, name.local)); |
| 792 | } |