equal
deleted
inserted
replaced
|
1 d3_selectionPrototype.html = function(value) { |
|
2 return arguments.length < 1 ? this.node().innerHTML |
|
3 : (this.each(typeof value === "function" |
|
4 ? function() { this.innerHTML = value.apply(this, arguments); } |
|
5 : function() { this.innerHTML = value; })); |
|
6 }; |