From db5a5e1b37a66074f7df16fc0f498eb96fcb9b06 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 5 Jun 2018 15:46:26 -0400 Subject: [PATCH] toastr container --- jslib | 2 +- src/app/app.component.ts | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/jslib b/jslib index 476d21e9f07..c5fbea2341e 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 476d21e9f07f648784e92e6e7ec4ae37910e2449 +Subproject commit c5fbea2341e90826833c513e2fb0fed780bc8b50 diff --git a/src/app/app.component.ts b/src/app/app.component.ts index d3b3b19cee7..9cdcd64e283 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -13,9 +13,18 @@ import { Router } from '@angular/router'; selector: 'app-root', styles: [], template: ` + `, }) export class AppComponent { + toasterConfig: ToasterConfig = new ToasterConfig({ + showCloseButton: true, + mouseoverTimerStop: true, + animation: 'flyRight', + limit: 5, + }); + constructor() { + // } }