JanStevens/angular-growl-2

Show the same notification multiple times in a row

Closed this issue · 2 comments

How to show the same notification multiple times in a row? At the moment, if the same notification is sent twice or more, nothing happens, until the first one is dismissed

just use
app.config(['growlProvider', function(growlProvider) {
growlProvider.onlyUniqueMessages(false);
}]);

see doc on http://janstevens.github.io/angular-growl-2/

Wonderful! Thank you!!!