e33debc214
Prepared diff view for multiple view modes Converted commits.js to coffeescript image info in separate coffeescript file Added swipe view mode Added onion skin viewMode
18 lines
293 B
Plaintext
18 lines
293 B
Plaintext
= render "head"
|
|
|
|
- if @path.present?
|
|
%ul.breadcrumb
|
|
= 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});
|
|
});
|
|
|