Quellcode durchsuchen

Makes show hide animation speed fast

Talha Mansoor vor 11 Jahren
Ursprung
Commit
72022aa8be
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 3 3
      templates/tags.html

+ 3 - 3
templates/tags.html

@@ -20,10 +20,10 @@
                 if(filter) {
                     // this finds all links in a list that contain the input,
                     // and hide the ones not containing the input while showing the ones that do
-                    $('#list-of-tags').find("a:not(:Contains(" + filter + "))").parent().hide('slow');
-                    $('#list-of-tags').find("a:Contains(" + filter + ")").parent().show('slow');
+                    $('#list-of-tags').find("a:not(:Contains(" + filter + "))").parent().hide('fast');
+                    $('#list-of-tags').find("a:Contains(" + filter + ")").parent().show('fast');
                     } else {
-                    $('#list-of-tags').find("li").show('slow');
+                    $('#list-of-tags').find("li").show('fast');
                 }
                 return false;
             })