2011-11-16 08:38:53 +03:00
|
|
|
:plain
|
2012-07-10 23:12:38 +03:00
|
|
|
// Load Files list
|
2012-10-03 18:40:56 -04:00
|
|
|
$("#tree-holder").html("#{escape_javascript(render(partial: "tree", locals: {tree: @tree}))}");
|
2012-03-06 00:29:40 +02:00
|
|
|
$("#tree-content-holder").show("slide", { direction: "right" }, 150);
|
2012-09-17 13:07:17 -04:00
|
|
|
$('.project-refs-form #path').val("#{@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-09-03 22:30:14 +03:00
|
|
|
ajaxGet('#{@logs_path}');
|
2012-07-10 22:52:38 +03:00
|
|
|
});
|