I am using the toaster directive on my AngularJS web project.
Everything is configured as in the documentation; this is, on my view I have the container declared as follows.
<toaster-container toaster-options="{'time-out': 3000, 'close-button':true, 'animation-class': 'toast-top-right'}"></toaster-container>
I have injected the 'toaster' module globally on my app.js file and the 'toaster' service on my controller of interest. On some action occurence I am calling
toaster.pop('success', "Comentario Actualizado", "");
The toast shows up on the view, at the correct spot, with the cancel button and the timeout that I configured of course. However, the toast is not showing any text along with it. Anything I incorrectly implemented or anything I could be missing ? Please help, I know the problem is super trivial but I truly don't understand why the expected behavior is not happening.
Thanks