Update htmx script to 2.0.1

This commit is contained in:
2024-07-29 18:06:19 -04:00
parent a2960a79c6
commit 961307fd99
6 changed files with 11 additions and 11 deletions

View File

@@ -445,14 +445,14 @@ module Script =
/// Script tag to load the minified version from unpkg.com
let minified =
script [ _src "https://unpkg.com/htmx.org@2.0.0"
_integrity "sha384-wS5l5IKJBvK6sPTKa2WZ1js3d947pvWXbPJ1OmWfEuxLgeHcEbjUUA5i9V5ZkpCw"
script [ _src "https://unpkg.com/htmx.org@2.0.1"
_integrity "sha384-QWGpdj554B4ETpJJC9z+ZHJcA/i59TyjxEPXiiUgN2WmTyV5OEZWCD6gQhgkdpB/"
_crossorigin "anonymous" ] []
/// Script tag to load the unminified version from unpkg.com
let unminified =
script [ _src "https://unpkg.com/htmx.org@2.0.0/dist/htmx.js"
_integrity "sha384-Xh+GLLi0SMFPwtHQjT72aPG19QvKB8grnyRbYBNIdHWc2NkCrz65jlU7YrzO6qRp"
script [ _src "https://unpkg.com/htmx.org@2.0.1/dist/htmx.js"
_integrity "sha384-gpIh5aLQ0qmX8kZdyhsd6jA24uKLkqIr1WAGtantR4KsS97l/NRBvh8/8OYGThAf"
_crossorigin "anonymous" ] []