| Index: client/dom/generated/src/frog/TouchEvent.dart
|
| diff --git a/client/dom/generated/src/frog/TouchEvent.dart b/client/dom/generated/src/frog/TouchEvent.dart
|
| index 90f105843afac969c78598bb3537b065a00ddfd5..5dba4a86359c5c1d9699ccc8f93228f3dd2f25f4 100644
|
| --- a/client/dom/generated/src/frog/TouchEvent.dart
|
| +++ b/client/dom/generated/src/frog/TouchEvent.dart
|
| @@ -1,19 +1,19 @@
|
|
|
| class TouchEvent extends UIEvent native "*TouchEvent" {
|
|
|
| - bool altKey;
|
| + bool get altKey() native "return this.altKey;";
|
|
|
| - TouchList changedTouches;
|
| + TouchList get changedTouches() native "return this.changedTouches;";
|
|
|
| - bool ctrlKey;
|
| + bool get ctrlKey() native "return this.ctrlKey;";
|
|
|
| - bool metaKey;
|
| + bool get metaKey() native "return this.metaKey;";
|
|
|
| - bool shiftKey;
|
| + bool get shiftKey() native "return this.shiftKey;";
|
|
|
| - TouchList targetTouches;
|
| + TouchList get targetTouches() native "return this.targetTouches;";
|
|
|
| - TouchList touches;
|
| + TouchList get touches() native "return this.touches;";
|
|
|
| void initTouchEvent(TouchList touches, TouchList targetTouches, TouchList changedTouches, String type, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) native;
|
| }
|
|
|