Skip to content

Commit 5147c02

Browse files
author
exoego
committed
Make it trait since no such class
1 parent 10c2462 commit 5147c02

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1017,9 +1017,9 @@ abstract class Element
10171017
var onfullscreenerror: js.Function1[Event, _] = js.native
10181018
}
10191019

1020-
class FullscreenOptions(
1021-
navigationUI: js.UndefOr[String] = js.undefined
1022-
) extends js.Object
1020+
trait FullscreenOptions extends js.Object {
1021+
var navigationUI: js.UndefOr[String] = js.undefined
1022+
}
10231023

10241024
/**
10251025
* A Node is an interface from which a number of DOM types inherit, and allows these

0 commit comments

Comments
 (0)