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

show.html.haml « graphs « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e4548f26d0b3589e365d87f0d13b4f8d26da3c1 (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
.loading-graph
  .center
    %h3.page-title
      %i.icon-spinner.icon-spin
      Building repository graph.
    %p Please wait a moment, this page will automatically refresh when ready.

.stat-graph
  .header.clearfix
    .pull-right
      %select
        %option{:value => "commits"} Commits
        %option{:value => "additions"} Additions
        %option{:value => "deletions"} Deletions
    %h3#date_header.page-title
    %p.light
      Commits to #{@project.default_branch}, excluding merge commits. Limited by 6,000 commits
    %input#brush_change{:type => "hidden"}
  .graphs
    #contributors-master
    #contributors.clearfix
      %ol.contributors-list.clearfix

:javascript
  $(".stat-graph").hide();

  $.ajax({
    type: "GET",
    url: location.href,
    complete: function() {
      $(".stat-graph").fadeIn();
      $(".loading-graph").hide();
    },
    dataType: "script"
  });