| 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
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ce37e5541b4a03d2265b18db10340354b7ffe216
|
| --- /dev/null
|
| +++ b/client/dom/generated/src/frog/TouchEvent.dart
|
| @@ -0,0 +1,19 @@
|
| +
|
| +class TouchEvent extends UIEvent native "TouchEvent" {
|
| +
|
| + bool altKey;
|
| +
|
| + TouchList changedTouches;
|
| +
|
| + bool ctrlKey;
|
| +
|
| + bool metaKey;
|
| +
|
| + bool shiftKey;
|
| +
|
| + TouchList targetTouches;
|
| +
|
| + TouchList 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;
|
| +}
|
|
|