From c068828297f9dcd7af6272030b3473103cbc7e9b Mon Sep 17 00:00:00 2001 From: Justin Willis Date: Tue, 14 Jun 2016 14:10:33 -0500 Subject: [PATCH] fix(toast): toast will now be enabled (#6904) --- src/components/toast/toast.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/toast/toast.ts b/src/components/toast/toast.ts index 8e0bde408e..cda38bf065 100644 --- a/src/components/toast/toast.ts +++ b/src/components/toast/toast.ts @@ -195,6 +195,7 @@ class ToastCmp implements AfterViewInit { this.dismiss('backdrop'); }, this.d.duration); } + this.enabled = true; } ionViewDidEnter() { @@ -208,7 +209,6 @@ class ToastCmp implements AfterViewInit { if (focusableEle) { focusableEle.focus(); } - this.enabled = true; } cbClick() {