summaryrefslogtreecommitdiff
path: root/assets/js/src/Notification.js
blob: 840ee9882dabcc423fcbec169749178ab9493853 (plain)
1
2
3
4
5
6
7
8
9
Kanboard.Notification = function(app) {
    this.app = app;
};

Kanboard.Notification.prototype.execute = function() {
    $(".alert-fade-out").delay(4000).fadeOut(800, function() {
        $(this).remove();
    });
};