Add toast notifications to SNMP page
Design team proposed that our error and success messages be
delivered as 'toast' messages on the right side of the screen.
This brings in ngToast and implements notifications on SNMP page.
Notifications will fade after 10 seconds or can be dismissed.
https://github.com/tameraydin/ngToast
Change-Id: I1053534cd1ab189ae5c2ac07e2a922acea231c70
Signed-off-by: beccabroek <beccabroek@gmail.com>
diff --git a/app/index.html b/app/index.html
index 63ee778..96f66c1 100644
--- a/app/index.html
+++ b/app/index.html
@@ -13,6 +13,7 @@
<app-header ng-if="dataService.showNavigation" path="dataService.path"></app-header>
<app-navigation ng-if="dataService.showNavigation" path="dataService.path" show-navigation="dataService.showNavigation"></app-navigation>
+ <toast ng-if="dataService.showNavigation"></toast>
<main ng-view ng-class="{'content__container': dataService.showNavigation, 'login__wrapper': !dataService.showNavigation}">
</main>