Переглянути джерело

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 :(");
         }