diff options
| author | 2013-11-12 21:09:16 +0100 | |
|---|---|---|
| committer | 2013-11-12 22:51:39 +0100 | |
| commit | a5240e085596e969429cd0ac255a92747b686333 (patch) | |
| tree | c3116cdc38b717271a0d8e388d5a57683fb1968d /public/scripts | |
| parent | 902357c12fb0d52562d0b278f5a3c935abc85c23 (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)
Diffstat (limited to 'public/scripts')
| -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 2f3ed38f1..21831bc9b 100644 --- a/public/scripts/main.js +++ b/public/scripts/main.js @@ -457,7 +457,7 @@ function init_actualize() { } function closeNotification() { - $(".notification").slideUp(200, function () { + $(".notification").fadeOut(600, function () { $(".notification").remove(); }); } |
