To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 23 / 234b04ce45c5af02990560943c7a01a17b8c1584.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (455 Bytes)

1 1296:038ba2d95de8 Chris
<%= javascript_tag do %>
2
function revisionGraphHandler(){
3
  drawRevisionGraph(
4
    document.getElementById('holder'),
5
    <%= commits.to_json.html_safe %>,
6
    <%= space %>
7
  );
8
}
9
$(document).ready(revisionGraphHandler);
10
$(window).resize(revisionGraphHandler);
11
<% end %>
12
13
<div id="holder" class="revision-graph"></div>
14
15
<% content_for :header_tags do %>
16
  <%= javascript_include_tag 'raphael' %>
17
  <%= javascript_include_tag 'revision_graph' %>
18
<% end %>