gitlabhq/app/views/tree/show.js.haml

11 lines
380 B
Text
Raw Normal View History

2011-11-16 08:38:53 +03:00
:plain
// Load Files list
$("#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
// Load last commit log for each file in tree
2012-07-10 22:52:38 +03:00
$('#tree-slider').waitForImages(function() {
ajaxGet('#{@logs_path}');
2012-07-10 22:52:38 +03:00
});