| Index: client/dom/generated/src/frog/Event.dart
|
| diff --git a/client/dom/generated/src/frog/Event.dart b/client/dom/generated/src/frog/Event.dart
|
| index 6de4c454f1d28c211e9dd22a2fe9d394c9f1adc8..057793aacf95bcb569a0826ebf15be9d6bf613c4 100644
|
| --- a/client/dom/generated/src/frog/Event.dart
|
| +++ b/client/dom/generated/src/frog/Event.dart
|
| @@ -1,5 +1,5 @@
|
|
|
| -class Event native "*Event" {
|
| +class EventJS implements Event native "*Event" {
|
|
|
| static final int AT_TARGET = 2;
|
|
|
| @@ -47,9 +47,9 @@ class Event native "*Event" {
|
|
|
| bool get cancelable() native "return this.cancelable;";
|
|
|
| - Clipboard get clipboardData() native "return this.clipboardData;";
|
| + ClipboardJS get clipboardData() native "return this.clipboardData;";
|
|
|
| - EventTarget get currentTarget() native "return this.currentTarget;";
|
| + EventTargetJS get currentTarget() native "return this.currentTarget;";
|
|
|
| bool get defaultPrevented() native "return this.defaultPrevented;";
|
|
|
| @@ -59,9 +59,9 @@ class Event native "*Event" {
|
|
|
| void set returnValue(bool value) native "this.returnValue = value;";
|
|
|
| - EventTarget get srcElement() native "return this.srcElement;";
|
| + EventTargetJS get srcElement() native "return this.srcElement;";
|
|
|
| - EventTarget get target() native "return this.target;";
|
| + EventTargetJS get target() native "return this.target;";
|
|
|
| int get timeStamp() native "return this.timeStamp;";
|
|
|
|
|