angular-toastr icon indicating copy to clipboard operation
angular-toastr copied to clipboard

Angular port of CodeSeven/toastr.

Results 62 angular-toastr issues
Sort by recently updated
recently updated
newest added

Please refer the below screenshot for the exception: ![image](https://user-images.githubusercontent.com/4299180/142827610-3c8780cd-ad02-430f-8803-49ccc967250f.png) **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...

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.

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...