From 03b998133a21604dbf054f03b33df708efee5174 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 21 Apr 2016 14:47:03 -0400 Subject: [PATCH] style(toast): fix linter error --- ionic/components/toast/toast.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ionic/components/toast/toast.ts b/ionic/components/toast/toast.ts index e060618df0..52afca33e6 100644 --- a/ionic/components/toast/toast.ts +++ b/ionic/components/toast/toast.ts @@ -189,7 +189,7 @@ class ToastCmp { if (this.d.duration) { this.dismissTimeout = setTimeout(() => { - this.dismiss('backdrop') + this.dismiss('backdrop'); }, this.d.duration); } }