slower animation for tree browsing
This commit is contained in:
parent
52b0ceb87a
commit
e29c9b7932
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ $ ->
|
|||
$('span.log_loading:first').removeClass('hide')
|
||||
|
||||
$('#tree-slider .tree-item-file-name a, .breadcrumb li > a').live "click", ->
|
||||
$("#tree-content-holder").hide("slide", { direction: "left" }, 150)
|
||||
$("#tree-content-holder").hide("slide", { direction: "left" }, 400)
|
||||
|
||||
# Make the entire tree-item row clickable, but not if clicking another link (like a commit message)
|
||||
$("#tree-slider .tree-item").live 'click', (e) ->
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
:plain
|
||||
// Load Files list
|
||||
$("#tree-holder").html("#{escape_javascript(render(partial: "tree", locals: {tree: @tree}))}");
|
||||
$("#tree-content-holder").show("slide", { direction: "right" }, 150);
|
||||
$("#tree-content-holder").show("slide", { direction: "right" }, 400);
|
||||
$('.project-refs-form #path').val("#{@path}");
|
||||
|
||||
// Load last commit log for each file in tree
|
||||
|
|
Loading…
Reference in a new issue