We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22f38bc commit 769a85dCopy full SHA for 769a85d
src/main/scala/org/scalajs/dom/ext/package.scala
@@ -9,6 +9,9 @@ package object ext {
9
implicit class PimpedNodeList(nodes: NodeList)
10
extends EasySeq[Node](nodes.length, nodes.apply)
11
12
+ implicit class PimpedDOMTokenList(nodes: DOMTokenList)
13
+ extends EasySeq[String](nodes.length, nodes.apply)
14
+
15
implicit class PimpedTouchList(nodes: TouchList)
16
extends EasySeq[Touch](nodes.length, nodes.apply)
17
0 commit comments