Преглед изворни кода

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