summaryrefslogtreecommitdiff
path: root/app/views/projects/graphs/show.html.haml
blob: 33970e7b90912cee3848f9f6653de60441fe25ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
- page_title "Contributors", "Graphs"
= render 'head'

.row-content-block.append-bottom-default
  .tree-ref-holder
    = render 'shared/ref_switcher', destination: 'graphs'
  %ul.breadcrumb.repo-breadcrumb
    = commits_breadcrumbs

.loading-graph
  .center
    %h3.page-title
      %i.fa.fa-spinner.fa-spin
      Building repository graph.
    %p.slead Please wait a moment, this page will automatically refresh when ready.

.stat-graph.hide
  .header.clearfix
    %h3#date_header.page-title
    %p.light
      Commits to #{@ref}, excluding merge commits. Limited to 6,000 commits.
    %input#brush_change{:type => "hidden"}
  .graphs
    #contributors-master
    #contributors.clearfix
      %ol.contributors-list.clearfix



:javascript
  $.ajax({
    type: "GET",
    url: location.href,
    dataType: "json",
    success: function (data) {
      var graph = new ContributorsStatGraph();
      graph.init(data);

      $("#brush_change").change(function(){
        graph.change_date_header();
        graph.redraw_authors();
      });

      $(".stat-graph").fadeIn();
      $(".loading-graph").hide();
    }
  });