()
| 152 | } |
| 153 | |
| 154 | function renderWindows() { |
| 155 | stats.windows.current = document.getElementsByTagName('body')[0].scrollTop; |
| 156 | module.sel.selectAll(".histogram div.window") |
| 157 | .style("display", function(d) { return stats.windows[d] !== null ? "block" : "none"; }) |
| 158 | .style("top", function(d) { return pixelsToPercentage(stats.windows[d]) + "%"; }); |
| 159 | } |
| 160 | |
| 161 | function renderTOC() { |
| 162 | var tree = []; |
no outgoing calls
no test coverage detected