From eb653c602e1a1211ff13ab61239858b38b3137a4 Mon Sep 17 00:00:00 2001 From: "Andrey F. Mindubaev" Date: Fri, 13 May 2016 12:30:39 +0300 Subject: [PATCH] Typo: Pointer.getY method for iOS returned this.location.x instead of this.location.y --- ui/gestures/gestures.ios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/gestures/gestures.ios.ts b/ui/gestures/gestures.ios.ts index 31a4086f5..117ac75ee 100644 --- a/ui/gestures/gestures.ios.ts +++ b/ui/gestures/gestures.ios.ts @@ -395,7 +395,7 @@ class Pointer implements definition.Pointer { } getY(): number { - return this.location.x; + return this.location.y; } }