2012-02-06 21:32:04 +01:00
|
|
|
= render "head"
|
2011-11-01 21:11:24 +01:00
|
|
|
|
2012-09-27 10:58:41 +02:00
|
|
|
- if @path.present?
|
2012-01-27 00:46:32 +01:00
|
|
|
%ul.breadcrumb
|
2012-11-01 22:58:13 +01:00
|
|
|
= breadcrumbs
|
2011-11-01 21:11:24 +01:00
|
|
|
|
2012-08-11 00:07:50 +02:00
|
|
|
%div{id: dom_id(@project)}
|
2012-12-01 13:49:21 +01:00
|
|
|
#commits-list= render "commits"
|
2011-11-05 13:26:06 +01:00
|
|
|
.clear
|
2012-08-11 00:07:50 +02:00
|
|
|
.loading{ style: "display:none;"}
|
2011-11-05 13:26:06 +01:00
|
|
|
|
2011-11-27 09:36:28 +01:00
|
|
|
- if @commits.count == @limit
|
|
|
|
:javascript
|
|
|
|
$(function(){
|
2012-02-12 22:52:27 +01:00
|
|
|
CommitsList.init("#{@ref}", #{@limit});
|
2011-11-27 09:36:28 +01:00
|
|
|
});
|
2012-01-29 22:59:12 +01:00
|
|
|
|