This commit is contained in:
Ziver Koc 2010-12-26 18:38:48 +00:00
parent d2bf44365c
commit 7aa180f512
2 changed files with 19 additions and 5 deletions

View file

@ -88,7 +88,11 @@ function updateUploadStatus(){
jQuery("#UploadQueue #"+item.id).delay(5000).fadeOut("slow", function(){
jQuery(this).remove();
});
//jQuery("#UploadQueue #"+item.id).attr("id", "del");
}
else if( item.status == "Error" ){
jQuery("#UploadQueue #"+item.id).delay(30000).fadeOut("slow", function(){
jQuery(this).remove();
});
}
});
},