Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
scalafm
  • Loading branch information
russwyte committed Feb 26, 2021
commit ad63fe5f441ecc39b78ccb182251fc0237f96309
3 changes: 2 additions & 1 deletion src/main/scala/org/scalajs/dom/ext/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ package object ext {
implicit def pimpRichAnimatedNumber(x: svg.AnimatedNumber): RichDouble =
x.baseVal: runtime.RichDouble

implicit def pimpAnimatedLength(x: svg.AnimatedLength): Double = x.baseVal.value
implicit def pimpAnimatedLength(x: svg.AnimatedLength): Double =
x.baseVal.value

implicit def pimpRichAnimatedLength(x: svg.AnimatedLength): RichDouble =
x.baseVal.value: runtime.RichDouble
Expand Down