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

Partial fix for the #226 issue. You can use this fix if you only show 1 toast at a time. ``` .constant('toastrConfig', { ..., maxOpened: 1, ... }); ```

I would like a toastr to stay open unless explicitly closed by the user. Setting `timeOut: 0` keeps it open, but then if the toastr is hovered, it closes after...

In our project we are using angular-toastr, for angular 1.4.x. But we are re-writing the whole project to angular2 and we are looking for a support for the angular-toaster in...

Hello my friend. How can I change the widht atribute of my toast in my controller? something like this: toast.width = '300 px' I read in the documentation that this...

Hello Everyone. I'm trying to have buttons on toaster , but I'm unable to use ng-click not onClick . I'll update my findings here :) Regards,

My toastrConfig.ts has ``` export function toastrConfig(toastrConfig: any): void { ... toastrConfig.positionClass = 'toast-top-right'; ... } ``` but for one my particular case I just want to show toastr bottom-right:...

In this library you have the option to change the container id using: ``` app.config(function(toastrConfig) { angular.extend(toastrConfig, { //... containerId: 'toast-container' //... }); }); ``` However in your styling file...

Hi, I saw the FAQ and the related closed issues, are you planning on adding support soon? Can I help in fixing it somehow?

I have a use case where a toastr has various buttons (save / cancel) and when clicking them, my vm.something() must be called. I need it because the edit-dialog in...