v2.0.0
Removed direct dependency on jQuery JavaScript source (#17)
Since version 2.0.0
the wrapper does not force JS dependency on jQuery. You have to
add it manually by:
- explicit link in your
index.html
.
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
- or a Scala.js dependency.
jsDependencies +=
"org.webjars" % "jquery" % "3.3.1" / "3.3.1/jquery.js" minified "3.3.1/jquery.min.js"
Other changes
- Fixed return type of outerHeight and outerWidth - Thanks @cdejemeppe (#16)
- Scala.js upgrade to
0.6.24
(#17) - scalajs-dom upgrade to
0.9.6
(#17)