| Index: client/dom/generated/src/frog/Clipboard.dart
|
| diff --git a/client/dom/generated/src/frog/Clipboard.dart b/client/dom/generated/src/frog/Clipboard.dart
|
| index 45cc7657f19dae48d279cc5413d2a84582ee8718..96240d37ec3dc3454689b4153726ec8d8f56bf1e 100644
|
| --- a/client/dom/generated/src/frog/Clipboard.dart
|
| +++ b/client/dom/generated/src/frog/Clipboard.dart
|
| @@ -1,5 +1,5 @@
|
|
|
| -class Clipboard native "*Clipboard" {
|
| +class ClipboardJS implements Clipboard native "*Clipboard" {
|
|
|
| String get dropEffect() native "return this.dropEffect;";
|
|
|
| @@ -9,9 +9,9 @@ class Clipboard native "*Clipboard" {
|
|
|
| void set effectAllowed(String value) native "this.effectAllowed = value;";
|
|
|
| - FileList get files() native "return this.files;";
|
| + FileListJS get files() native "return this.files;";
|
|
|
| - DataTransferItemList get items() native "return this.items;";
|
| + DataTransferItemListJS get items() native "return this.items;";
|
|
|
| List get types() native "return this.types;";
|
|
|
| @@ -21,7 +21,7 @@ class Clipboard native "*Clipboard" {
|
|
|
| bool setData(String type, String data) native;
|
|
|
| - void setDragImage(HTMLImageElement image, int x, int y) native;
|
| + void setDragImage(HTMLImageElementJS image, int x, int y) native;
|
|
|
| var dartObjectLocalStorage;
|
|
|
|
|