Typo: Pointer.getY method for iOS returned this.location.x instead of this.location.y

This commit is contained in:
Andrey F. Mindubaev
2016-05-13 12:30:39 +03:00
parent 87c9828a04
commit eb653c602e

View File

@@ -395,7 +395,7 @@ class Pointer implements definition.Pointer {
} }
getY(): number { getY(): number {
return this.location.x; return this.location.y;
} }
} }