gitlab-org--gitlab-foss/app/views/projects/graph.html.haml

15 lines
310 B
Text
Raw Normal View History

%h3.page_title Project Network Graph
2012-02-26 15:06:40 -05:00
%br
2012-05-31 16:30:54 -04:00
.graph_holder
%h4
%small You can move around the graph by using arrow keys.
#holder.graph
2011-11-13 06:58:45 -05:00
:javascript
var chunk1={commits:#{@commits_json}};
var days=#{@days_json};
initGraph();
$(function(){
branchGraph($("#holder")[0]);
2012-10-16 07:57:13 -04:00
GraphNav.init();
2011-11-13 06:58:45 -05:00
});