- Set global settings more easily
// your @NgModule
imports: [
ToastrModule.forRoot({ alwaysOnTop: false, timeOut: 10000 })
]
- new individual settings
this.toastrService.success('message', 'title', {timeOut: 10000 });
- fixed a bug when setting timeOut = 0