angular-toastr
angular-toastr copied to clipboard
Angular port of CodeSeven/toastr.
Please refer the below screenshot for the exception:  **angular-taostr version:** 1.6.0 **angular vesion:** 1.5
Under **Toastr customization**, regarding passing custom options to an individual toast message call, it says: > The second option is to pass a third parameter (or second if you don't...
Put pull request back in
I am going to put this in a new issue so I can track it. So @dcardosods I can understand that some issues are a real pain to reproduce, so...
The original toastr has some parameters to configure durations, like showDuration and hideDuration. Is there any way to make such a configuration with angular-toastr?
Bonus: fix CSS specificity issues caused by pointer-events being styled inline.
Using Top Center Position won't allow user to click elements at the same height as the Notification
Hi First off I have to say that I love the notification framework. It was very easy to follow the documentation and get this working with our application. I have...
I see the messages in the target element but they do not have any styling. Any idea how I can debug the problem?
By [trusting all HTML](https://github.com/Foxandxss/angular-toastr/blob/ac58627684ac744baba13607a5c5be9b8aaee23f/src/toastr.js#L201), toastr bypasses the XSS protection provided by angular: if (options.allowHtml) { toast.scope.allowHtml = true; toast.scope.title = $sce.trustAsHtml(map.title); toast.scope.message = $sce.trustAsHtml(map.message); I think it is not toastr's...