diff options
| author | 2013-11-12 21:09:16 +0100 | |
|---|---|---|
| committer | 2013-11-12 21:09:16 +0100 | |
| commit | 605487b42d9b265879748b17a3890eeb0c76932c (patch) | |
| tree | cb6f7b3dc4abbb24065bcd2eec65d9c80ab6242b | |
| parent | 6c8eb102d75737fe6973cefa784e2ee72f9def85 (diff) | |
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)
| -rw-r--r-- | public/scripts/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/scripts/main.js b/public/scripts/main.js index e0df69f61..b86b1c856 100644 --- a/public/scripts/main.js +++ b/public/scripts/main.js @@ -461,7 +461,7 @@ function init_actualize() { } function closeNotification() { - $(".notification").slideUp(200, function () { + $(".notification").fadeOut(600, function () { $(".notification").remove(); }); } |
