Show the same notification multiple times in a row
LeleDev opened this issue · 2 comments
LeleDev commented
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
just use
app.config(['growlProvider', function(growlProvider) {
growlProvider.onlyUniqueMessages(false);
}]);
see doc on http://janstevens.github.io/angular-growl-2/
LeleDev commented
Wonderful! Thank you!!!