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

15 lines
394 B
Plaintext
Raw Normal View History

2011-12-30 07:54:42 +01:00
= render "project_head"
= render 'clone_panel'
= render "events/event_last_push", event: @last_push
2012-06-21 17:41:22 +02:00
.content_list= render @events
:javascript
$(function(){
var link_sel = ".project_clone_holder a";
$(link_sel).bind("click", function() {
$(link_sel).removeClass("active");
$(this).addClass("active");
$("#project_clone").val($(this).attr("data-clone"));
})
})