Angular Bootstrap alerts do not dismiss on a timeout

2.8k Views Asked by At

I am trying to add alerts from Angular Bootstrap and on timeout dismiss itself. However it does not dismiss itself. Here is the code:

angular.module('ui.services').service('AlertService', [
  function () {
    var alerts = [];
    this.add = function(type, msg){
        var self = this;            
        return alerts.push({
            type: type,
            msg: msg,
            close: function() {
                return self.closeAlert(this);
            }
        });
        $timeout(function(){ 
            self.closeAlert(this); 
        }, 3000);

    },
    this.closeAlert = function(alert) {
        return this.closeAlertIdx(alerts.indexOf(alert));
    },
    this.closeAlertIdx = function(index) {
        return alerts.splice(index, 1);
    },
    this.alertData = function() {
        return alerts;
    }
}]);

I have set the timeout but not sure what is wrong.

2

There are 2 best solutions below

6
On

Your $timeout is never called because you return just before.

Otherwise, at a glance, everything seems to be correct.

0
On