Skip to content

Commit 6068769

Browse files
committed
DataTransfer.{effectAllow,dropEffect} should be vars
1 parent 5d511de commit 6068769

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/scala/org/scalajs/dom/lib.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3805,15 +3805,15 @@ trait DataTransfer extends js.Object {
38053805
*
38063806
* MDN
38073807
*/
3808-
def effectAllowed: String = ???
3808+
var effectAllowed: String = ???
38093809

38103810
/**
38113811
* The actual effect that will be used, and should always be one of the possible values
38123812
* of effectAllowed.
38133813
*
38143814
* MDN
38153815
*/
3816-
def dropEffect: String = ???
3816+
var dropEffect: String = ???
38173817
/**
38183818
* Remove the data associated with a given type. The type argument is optional. If the
38193819
* type is empty or not specified, the data associated with all types is removed. If

0 commit comments

Comments
 (0)