summaryrefslogtreecommitdiff
path: root/assets/js/src/Notification.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/src/Notification.js')
-rw-r--r--assets/js/src/Notification.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/assets/js/src/Notification.js b/assets/js/src/Notification.js
deleted file mode 100644
index 840ee988..00000000
--- a/assets/js/src/Notification.js
+++ /dev/null
@@ -1,9 +0,0 @@
-Kanboard.Notification = function(app) {
- this.app = app;
-};
-
-Kanboard.Notification.prototype.execute = function() {
- $(".alert-fade-out").delay(4000).fadeOut(800, function() {
- $(this).remove();
- });
-};