Skip to content
Snippets Groups Projects
Commit 97e97743 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

fixed tree view

parent a77c8bf9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -5,21 +5,21 @@
var Tree = {
init:
function() {
(new Image).src = "ajax-loader-facebook.gif";
(new Image).src = "/assets/ajax-loader-facebook.gif";
 
$('#tree-slider td.tree-item-file-name a, #tree-breadcrumbs a').live("click", function() {
$('#tree-slider .tree-item-file-name a, .breadcrumb a').live("click", function() {
history.pushState({ path: this.path }, '', this.href)
$("#tree-content-holder").hide("slide", { direction: "left" }, 150)
})
 
$("#tree-slider tr.tree-item").live('click', function(e){
$("#tree-slider .tree-item").live('click', function(e){
if(e.target.nodeName != "A") {
link = $(this).find("td.tree-item-file-name a");
link = $(this).find(".tree-item-file-name a");
link.trigger("click");
}
});
 
$('#tree-slider td.tree-item-file-name a, #tree-breadcrumbs a').live({
$('#tree-slider td.tree-item-file-name a, .breadcrumb a').live({
"ajax:beforeSend": function() { $('.tree_progress').addClass("loading"); },
"ajax:complete": function() { $('.tree_progress').removeClass("loading"); }
});
Loading
Loading
Loading
Loading
@@ -122,5 +122,10 @@ table.highlighttable .linenodiv pre {
 
.tree-item-file-name {
font-weight:bold;
img {
position: relative;
top: 2px;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment