(selector)
| 83 | } |
| 84 | |
| 85 | function d3_selection_selector(selector) { |
| 86 | return typeof selector === "function" ? selector : function() { |
| 87 | return this.querySelector(selector); |
| 88 | }; |
| 89 | } |
| 90 | |
| 91 | d3.wordwrap = function(line, maxCharactersPerLine) { |
| 92 | var w = line.split(' '), |