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

show.html.haml « commit « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 485f2d1e67c6261e5a7ec27725cfca2d2e2ad464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
= render "commits/commit_box"

%p.pull-right.cgray
  This commit has
  %span.cgreen #{@commit.stats.additions} additions
  and
  %span.cred #{@commit.stats.deletions} deletions

= render "commits/diffs", diffs: @commit.diffs
= render "notes/notes_with_form"

:javascript
  $(function(){
    $('.files .file').each(function(){
      new CommitFile(this);
    });
  });