Spaces:
Running
Running
File size: 388 Bytes
e7b2eb4 | 1 2 3 4 5 6 7 8 9 10 11 | import "selection";
d3_selectionPrototype.text = function(value) {
return arguments.length
? this.each(typeof value === "function"
? function() { var v = value.apply(this, arguments); this.textContent = v == null ? "" : v; } : value == null
? function() { this.textContent = ""; }
: function() { this.textContent = value; })
: this.node().textContent;
};
|