소스 검색

Fadding animation when deleting a torrent

Antoine Leroyer 11 년 전
부모
커밋
70a868f2c9
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      public/js/custom.js

+ 4 - 2
public/js/custom.js

@@ -32,8 +32,10 @@ $(document).ready(function() {
       })
       .done(function( msg ) {
         if( msg == "OK" ) {
-          alertify.success("Torrent deleted !"); 
-          obj.parent().parent().remove();
+          obj.parent().parent().fadeOut("slow", function(){
+            alertify.success("Torrent deleted !");
+            obj.parent().parent().remove();
+          });
         } else {
           alertify.error("There is an error, I can't delete this torrent :(");
         }