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: 05bc1436e6d89adc507c69c04e7d948d9aa43647 (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
.loading-graph
  %center
    .loading
    %h3.page_title Building repository graph. Please wait a moment.

.stat-graph
  .header.clearfix
    .pull-right
      %select
        %option{:value => "commits"} Commits
        %option{:value => "additions"} Additions
        %option{:value => "deletions"} Deletions
    %h3#date_header.page_title
    %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() {
      $(".loading-graph").hide();
      $(".stat-graph").show();
    },
    dataType: "script"
  });