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: 4e0b0e36c343afc6caf338217ed8c3c350e5268d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%h3.page_title Project Network Graph
%br
.graph_holder
  %h4
    %small You can move around the graph by using the arrow keys.
  #holder.graph
    .loading.loading-gray

:javascript
  var branch_graph;
  $(function(){
    branch_graph = new BranchGraph($("#holder"), {
      url: '#{url_for controller: 'projects', action: 'graph', format: :json}',
      commit_url: '#{url_for controller: 'projects', action: 'show'}/commits/%s'
    });
  });