show.html.haml 368 Bytes
Newer Older
randx's avatar
randx committed
1
= render "commits/commit_box"
2

3
%p.pull-right.cgray
4 5 6 7 8
  This commit has
  %span.cgreen #{@commit.stats.additions} additions
  and
  %span.cred #{@commit.stats.deletions} deletions

9
= render "commits/diffs", diffs: @commit.diffs
Riyad Preukschas's avatar
Riyad Preukschas committed
10
= render "notes/notes_with_form"
11 12

:javascript
13
  $(function(){
14 15
    $('.files .file').each(function(){
      new CommitFile(this);
Koen Punt's avatar
Koen Punt committed
16
    });
17
  });