To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / repositories / _revision_graph.html.erb @ 1018:d78b06240b73
History | View | Annotate | Download (387 Bytes)
| 1 |
<%= javascript_include_tag "raphael.js" %>
|
|---|---|
| 2 |
<script type="text/javascript" charset="utf-8"> |
| 3 |
var chunk = {commits:<%= commits.values.to_json %>} |
| 4 |
</script>
|
| 5 |
<%= javascript_include_tag "revision_graph.js" %>
|
| 6 |
|
| 7 |
<script type="text/javascript"> |
| 8 |
Event.observe(window,"load", function(){
|
| 9 |
branchGraph(document.getElementById("holder"));
|
| 10 |
})
|
| 11 |
</script>
|
| 12 |
|
| 13 |
<div id="holder" class="graph"></div> |