OLD | NEW |
1 | 1 |
2 class TouchJs extends DOMTypeJs implements Touch native "*Touch" { | 2 class _TouchJs extends _DOMTypeJs implements Touch native "*Touch" { |
3 | 3 |
4 int get clientX() native "return this.clientX;"; | 4 int get clientX() native "return this.clientX;"; |
5 | 5 |
6 int get clientY() native "return this.clientY;"; | 6 int get clientY() native "return this.clientY;"; |
7 | 7 |
8 int get identifier() native "return this.identifier;"; | 8 int get identifier() native "return this.identifier;"; |
9 | 9 |
10 int get pageX() native "return this.pageX;"; | 10 int get pageX() native "return this.pageX;"; |
11 | 11 |
12 int get pageY() native "return this.pageY;"; | 12 int get pageY() native "return this.pageY;"; |
13 | 13 |
14 int get screenX() native "return this.screenX;"; | 14 int get screenX() native "return this.screenX;"; |
15 | 15 |
16 int get screenY() native "return this.screenY;"; | 16 int get screenY() native "return this.screenY;"; |
17 | 17 |
18 EventTargetJs get target() native "return this.target;"; | 18 _EventTargetJs get target() native "return this.target;"; |
19 | 19 |
20 num get webkitForce() native "return this.webkitForce;"; | 20 num get webkitForce() native "return this.webkitForce;"; |
21 | 21 |
22 int get webkitRadiusX() native "return this.webkitRadiusX;"; | 22 int get webkitRadiusX() native "return this.webkitRadiusX;"; |
23 | 23 |
24 int get webkitRadiusY() native "return this.webkitRadiusY;"; | 24 int get webkitRadiusY() native "return this.webkitRadiusY;"; |
25 | 25 |
26 num get webkitRotationAngle() native "return this.webkitRotationAngle;"; | 26 num get webkitRotationAngle() native "return this.webkitRotationAngle;"; |
27 } | 27 } |
OLD | NEW |