From 1badf7ec8550b2251354eda66fe20107267e482d Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Mon, 28 Sep 2015 11:14:12 -0500 Subject: [PATCH] fix(toggle): do not preventDefault --- ionic/components/switch/switch.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/ionic/components/switch/switch.ts b/ionic/components/switch/switch.ts index 9ddd6a5b15..16e3d28d40 100644 --- a/ionic/components/switch/switch.ts +++ b/ionic/components/switch/switch.ts @@ -189,8 +189,6 @@ export class Switch extends Ion { * Toggle the checked state of this switch. */ toggle(ev) { - ev.preventDefault(); - ev.stopPropagation(); this.check(!this.checked); }