Bläddra i källkod

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 12 år sedan
förälder
incheckning
605487b42d
1 ändrade filer med 1 tillägg och 1 borttagningar
  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();
 	});
 }