2011-11-16 08:38:53 +03:00
|
|
|
:plain
|
2012-07-10 23:12:38 +03:00
|
|
|
// Load Files list
|
2012-03-06 00:29:40 +02:00
|
|
|
$("#tree-holder").html("#{escape_javascript(render(:partial => "tree", :locals => {:repo => @repo, :commit => @commit, :tree => @tree}))}");
|
|
|
|
$("#tree-content-holder").show("slide", { direction: "right" }, 150);
|
|
|
|
$('.project-refs-form #path').val("#{params[:path]}");
|
2012-07-10 22:52:38 +03:00
|
|
|
|
2012-07-10 23:12:38 +03:00
|
|
|
// Load last commit log for each file in tree
|
2012-07-10 22:52:38 +03:00
|
|
|
$('#tree-slider').waitForImages(function() {
|
2012-07-10 23:12:38 +03:00
|
|
|
ajaxGet('#{@logs_path}');
|
2012-07-10 22:52:38 +03:00
|
|
|
});
|