Releases: UdashFramework/scala-js-jquery
Releases · UdashFramework/scala-js-jquery
v3.3.0
What's Changed
- upgrade jQuery to 3.6.4 by @halotukozak in #33
- Prepare 3.3.0 release by @ddworak in #34
New Contributors
- @halotukozak made their first contribution in #33
Full Changelog: v3.2.0...v3.3.0
v3.2.0
v3.0.2
v3.0.1
v3.0.0
Changes
- The wrapper is published as a CommonJS module now.
- Support for scalajs-bundler.
v2.0.1
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)