JanStevens / angular-growl-2

growl-like notifications for angularJS projects
MIT License
285 stars 97 forks source link

Show the same notification multiple times in a row #110

Closed LeleDev closed 8 years ago

LeleDev commented 8 years ago

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

oarcher commented 8 years ago

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

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

LeleDev commented 8 years ago

Wonderful! Thank you!!!