show.html.haml 301 Bytes
Newer Older
1
= render "head"
gitlabhq's avatar
gitlabhq committed
2

3
- if @path.present?
4
  %ul.breadcrumb
5
    = commits_breadcrumbs
gitlabhq's avatar
gitlabhq committed
6

7
%div{id: dom_id(@project)}
8
  #commits-list= render "commits"
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
9
.clear
10
.loading{ style: "display:none;"}
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
11

12 13 14
- if @commits.count == @limit
  :javascript
    $(function(){
15
      CommitsList.init("#{@ref}", #{@limit});
16
    });
17