Currently, I'm working on a project that uses angular2-toaster.
// Show message notification
this.toasterService.pop('success',
`New message from ${data.sender.name} (${data.sender.hid})`,
data.message);
When the user clicks to the pop-up, I want to show the dialog for more detail. I've searched the document on https://www.npmjs.com/package/angular2-toaster but can not find the solution to handle the event when user click on the pop-up, can you suggest for me some advice?
Thanks a lot.