()
| 81 | } |
| 82 | |
| 83 | function addAlert() { |
| 84 | |
| 85 | var x = d3.random.normal(module.sel.node().offsetWidth / 2, module.sel.node().offsetWidth / 5); |
| 86 | var y = d3.random.normal(module.sel.node().offsetHeight / 2, module.sel.node().offsetHeight / 5); |
| 87 | |
| 88 | container.append("img").attr("src", "modules/crapplets/img/alerts/" + _.sample(alerts)) |
| 89 | .style("left", x() + "px") |
| 90 | .style("top", y() + "px"); |
| 91 | } |
| 92 | |
| 93 | })(); |
no test coverage detected