(detail: GestureDetail)
| 281 | } |
| 282 | |
| 283 | private onMove(detail: GestureDetail) { |
| 284 | if (shouldToggle(isRTL(this.el), this.checked, detail.deltaX, -10)) { |
| 285 | this.toggleChecked(); |
| 286 | hapticSelection(); |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | private onEnd(ev: GestureDetail) { |
| 291 | this.activated = false; |
no test coverage detected