7754189187
Didn't bother with files in db/, config/, or features/
25 lines
471 B
Plaintext
25 lines
471 B
Plaintext
= render "head"
|
|
|
|
- if params[:path]
|
|
%ul.breadcrumb
|
|
%li
|
|
%span.arrow
|
|
= link_to project_commits_path(@project) do
|
|
= @project.name
|
|
%span.divider
|
|
\/
|
|
%li
|
|
%a{href: "#"}= params[:path].split("/").join(" / ")
|
|
|
|
%div{id: dom_id(@project)}
|
|
#commits_list= render "commits"
|
|
.clear
|
|
.loading{ style: "display:none;"}
|
|
|
|
- if @commits.count == @limit
|
|
:javascript
|
|
$(function(){
|
|
CommitsList.init("#{@ref}", #{@limit});
|
|
});
|
|
|