Procházet zdrojové kódy

Fade out pour les notifications

Fluidifie un peu leur fermeture (le slideUp faisait disparaître la
notification avant qu'elle ne soit totalement refermée)
Marien Fressinaud před 12 roky
rodič
revize
605487b42d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      public/scripts/main.js

+ 1 - 1
public/scripts/main.js

@@ -461,7 +461,7 @@ function init_actualize() {
 }
 
 function closeNotification() {
-	$(".notification").slideUp(200, function () {
+	$(".notification").fadeOut(600, function () {
 		$(".notification").remove();
 	});
 }