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

show.html.haml « network « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a480ceaf9952a9c54666ebda818f5cce61ab66cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
= render "head"
.graph_holder
  %h4
    %small You can move around the graph by using the arrow keys.
  #holder.graph
    .loading.loading-gray

:javascript
  var branch_graph;
  $("#filter_ref").click(function() {
    $(this).closest('form').submit();
  });
  branch_graph = new BranchGraph($("#holder"), {
    url: '#{project_network_path(@project, @ref, @options.merge(format: :json))}',
    commit_url: '#{project_commit_path(@project, 'ae45ca32').gsub("ae45ca32", "%s")}',
    ref: '#{@ref}',
    commit_id: '#{@commit.id}'
  });