diff options
| author | 2013-03-11 21:54:37 +0100 | |
|---|---|---|
| committer | 2013-03-11 21:54:37 +0100 | |
| commit | b0a9ce799013b322f7480b75e98f7dcd038d530e (patch) | |
| tree | 7ec9d9c1d6cb690be04f3105b676601a69fb749a /public/scripts | |
| parent | e405af1049a6abbee717db0d4e289f4cd4862b67 (diff) | |
Correction bug notification
Diffstat (limited to 'public/scripts')
| -rw-r--r-- | public/scripts/notification.js | 6 |
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); |
