Sha256: 9780a73bddd1ba5455ae00b72ca1c68ff73595b819d9f74e684ebf1663c85d95
Contents?: true
Size: 378 Bytes
Versions: 6
Compression:
Stored size: 378 Bytes
Contents
// TODO append(node)? // TODO append(function)? d3_selectionPrototype.append = function(name) { name = d3.ns.qualify(name); function append() { return this.appendChild(document.createElement(name)); } function appendNS() { return this.appendChild(document.createElementNS(name.space, name.local)); } return this.select(name.local ? appendNS : append); };
Version data entries
6 entries across 6 versions & 1 rubygems