Commit 6a2c7d80cbfe33cca71c11339f3443d9c6a33069
1 parent
42ba6d04
Exists in
master
and in
4 other branches
fixed image preview
Showing
3 changed files
with
5 additions
and
2 deletions
Show diff stats
app/assets/stylesheets/projects.css.scss
app/models/tree.rb
app/views/refs/tree.js.haml
1 | 1 | :plain |
2 | - $("#tree-holder table").hide("slide", { direction: "left" }, 150, function(){ | |
2 | + $("#tree-content-holder").hide("slide", { direction: "left" }, 150, function(){ | |
3 | 3 | $("#tree-holder").html("#{escape_javascript(render(:partial => "tree", :locals => {:repo => @repo, :commit => @commit, :tree => @tree}))}"); |
4 | - $("#tree-holder table").show("slide", { direction: "right" }, 150); | |
4 | + $("#tree-content-holder").show("slide", { direction: "right" }, 150); | |
5 | 5 | }); | ... | ... |