fix(toggle): do not preventDefault

This commit is contained in:
Adam Bradley
2015-09-28 11:14:12 -05:00
parent 00756c5596
commit 1badf7ec85

View File

@ -189,8 +189,6 @@ export class Switch extends Ion {
* Toggle the checked state of this switch. * Toggle the checked state of this switch.
*/ */
toggle(ev) { toggle(ev) {
ev.preventDefault();
ev.stopPropagation();
this.check(!this.checked); this.check(!this.checked);
} }