aboutsummaryrefslogtreecommitdiff
path: root/public/scripts/notification.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/scripts/notification.js')
-rw-r--r--public/scripts/notification.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/public/scripts/notification.js b/public/scripts/notification.js
deleted file mode 100644
index e4f9fb649..000000000
--- a/public/scripts/notification.js
+++ /dev/null
@@ -1,17 +0,0 @@
-function closeNotification () {
- $(".notification").slideUp (200, function () {
- $(".notification").remove ();
- });
-}
-
-$(document).ready (function () {
- notif = $(".notification");
- if (notif[0] !== undefined) {
- timer = setInterval('closeNotification()', 5000);
-
- notif.find ("a.close").click (function () {
- closeNotification ();
- return false;
- });
- }
-});