lil restyle

This commit is contained in:
Dmitriy Zaporozhets 2012-01-11 09:35:21 +02:00
parent c66bc99fb7
commit c8b955a44b
15 changed files with 71 additions and 61 deletions

View file

@ -5,7 +5,7 @@
var Tree = {
init:
function() {
(new Image).src = "/assets/ajax-loader-tree.gif";
(new Image).src = "ajax-loader-facebook.gif";
$('#tree-slider td.tree-item-file-name a, #tree-breadcrumbs a').live("click", function() {
history.pushState({ path: this.path }, '', this.href)
@ -20,8 +20,8 @@ var Tree = {
});
$('#tree-slider td.tree-item-file-name a, #tree-breadcrumbs a').live({
"ajax:beforeSend": function() { $('h2.icon').addClass("loading") },
"ajax:complete": function() { $('h2.icon').removeClass("loading")}
"ajax:beforeSend": function() { $('.tree_progress').addClass("loading"); },
"ajax:complete": function() { $('.tree_progress').removeClass("loading"); }
});
}
}