Welcome to mirror list, hosted at ThFree Co, Russian Federation.

graph.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07f038d28a236bc2fb6795218a732f59c15944ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%h3.page_title Project Network Graph
%br
.graph_holder
  %h4
    %small You can move around the graph by using arrow keys.
  #holder.graph
:javascript
  var chunk1={commits:#{@commits_json}};
  var days=#{@days_json};
  initGraph();
  $(function(){
    branchGraph($("#holder")[0]);
    GraphNav.init();
  });