gitlabhq/app/views/commits/show.html.haml

18 lines
301 B
Plaintext

= render "head"
- if @path.present?
%ul.breadcrumb
= commits_breadcrumbs
%div{id: dom_id(@project)}
#commits-list= render "commits"
.clear
.loading{ style: "display:none;"}
- if @commits.count == @limit
:javascript
$(function(){
CommitsList.init("#{@ref}", #{@limit});
});