| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -353,18 +353,22 @@ class TouchGestureRecognizer extends UIGestureRecognizer { | |||
| 353 | 353 | ||
| 354 | 354 | touchesBeganWithEvent(touches: NSSet<any>, event: any): void { | |
| 355 | 355 | this.executeCallback(TouchAction.down, touches, event); | |
| 356 | + this.view.touchesBeganWithEvent(touches, event); | ||
| 356 | 357 | } | |
| 357 | 358 | ||
| 358 | 359 | touchesMovedWithEvent(touches: NSSet<any>, event: any): void { | |
| 359 | 360 | this.executeCallback(TouchAction.move, touches, event); | |
| 361 | + this.view.touchesMovedWithEvent(touches, event); | ||
| 360 | 362 | } | |
| 361 | 363 | ||
| 362 | 364 | touchesEndedWithEvent(touches: NSSet<any>, event: any): void { | |
| 363 | 365 | this.executeCallback(TouchAction.up, touches, event); | |
| 366 | + this.view.touchesEndedWithEvent(touches, event); | ||
| 364 | 367 | } | |
| 365 | 368 | ||
| 366 | 369 | touchesCancelledWithEvent(touches: NSSet<any>, event: any): void { | |
| 367 | 370 | this.executeCallback(TouchAction.cancel, touches, event); | |
| 371 | + this.view.touchesCancelledWithEvent(touches, event); | ||
| 368 | 372 | } | |
| 369 | 373 | ||
| 370 | 374 | private executeCallback(action: string, touches: NSSet<any>, event: any): void { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments