Przeglądaj źródła

Evolution #676: Fermer la demande de tag instantanément

Sevajol Bastien 11 lat temu
rodzic
commit
c5902bcf35

+ 6 - 0
src/Muzich/CoreBundle/Resources/public/js/muzich.js Wyświetl plik

@@ -2897,4 +2897,10 @@ $(document).ready(function(){
2897 2897
     $('#helpbox').remove();
2898 2898
   });
2899 2899
    
2900
+    // Hide add_tag
2901
+    $('div#add_tag div.inputs input[type="submit"]').live('click', function(){
2902
+      $('#fade').fadeOut(1000, function(){$('#fade').remove();});
2903
+      $('div#add_tag').fadeOut();
2904
+    });
2905
+   
2900 2906
 });