JanStevens / angular-growl-2

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

Fix empty title and text #86

Closed asabirov closed 9 years ago

asabirov commented 9 years ago

Angular-translate returns empty string when translation not found:

> translate('test',{})
> ""

It's easy to fix:

> translate('test',{}) || 'test'
> "test"