Skip to content

Commit

Permalink
fix(toast): toast will now be enabled (#6904)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgw96 authored and danbucholtz committed Jun 14, 2016
1 parent efa0c7b commit c068828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/toast/toast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ class ToastCmp implements AfterViewInit {
this.dismiss('backdrop');
}, this.d.duration);
}
this.enabled = true;
}

ionViewDidEnter() {
Expand All @@ -208,7 +209,6 @@ class ToastCmp implements AfterViewInit {
if (focusableEle) {
focusableEle.focus();
}
this.enabled = true;
}

cbClick() {
Expand Down

0 comments on commit c068828

Please sign in to comment.