aboutsummaryrefslogtreecommitdiff
path: root/public/scripts
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-11 21:54:37 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-11 21:54:37 +0100
commitb0a9ce799013b322f7480b75e98f7dcd038d530e (patch)
tree7ec9d9c1d6cb690be04f3105b676601a69fb749a /public/scripts
parente405af1049a6abbee717db0d4e289f4cd4862b67 (diff)
Correction bug notification
Diffstat (limited to 'public/scripts')
-rw-r--r--public/scripts/notification.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/public/scripts/notification.js b/public/scripts/notification.js
index a3a874c12..e4f9fb649 100644
--- a/public/scripts/notification.js
+++ b/public/scripts/notification.js
@@ -1,11 +1,11 @@
function closeNotification () {
- $("#notification").slideUp (200, function () {
- $("#notification").remove ();
+ $(".notification").slideUp (200, function () {
+ $(".notification").remove ();
});
}
$(document).ready (function () {
- notif = $("#notification");
+ notif = $(".notification");
if (notif[0] !== undefined) {
timer = setInterval('closeNotification()', 5000);