toolkit/javascript/d3/src/core/selection-html.js
changeset 47 c0b4a8b5a012
equal deleted inserted replaced
46:efd9c589177a 47:c0b4a8b5a012
       
     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 };