Alerts have replaced Angular-Toaster as our way of displaying application level Alerts.
To use alerts as notifications simple place them in a<div class="alert-container">.
This will move all alerts to the top right corner with a position:fixed and z-index:99999 so that it will always be on top
To make sure that alerts go away automatically the dismiss-on-timeout attribute to your alert. We reccomend the alerts stay visible for at least 5 seconds (5000ms) and that they do not disappear while the user is hovering over said alert (UI-Bootstrap Handles this behavior by default)
To make your alerts manually closeable, apply the Close() attribute to your alert element
For more information, see UI-Bootstrap'sdocumentation
Alert notifications should be unique in nature and not clutter the user's screen, however it may at some times be necessary to display multiple notifications. Try for a maximum of four Toasters displayed at once.