Update script tags for v1.9.2

This commit is contained in:
2023-05-06 13:14:58 -04:00
parent 50c66435e8
commit 7798314fb8
6 changed files with 11 additions and 11 deletions

View File

@@ -296,14 +296,14 @@ module Script =
/// Script tag to load the minified version from unpkg.com
let minified =
script [ _src "https://unpkg.com/htmx.org@1.9.0"
_integrity "sha384-aOxz9UdWG0yBiyrTwPeMibmaoq07/d3a96GCbb9x60f3mOt5zwkjdbcHFnKH8qls"
script [ _src "https://unpkg.com/htmx.org@1.9.2"
_integrity "sha384-L6OqL9pRWyyFU3+/bjdSri+iIphTN/bvYyM37tICVyOJkWZLpP2vGn6VUEXgzg6h"
_crossorigin "anonymous" ] []
/// Script tag to load the unminified version from unpkg.com
let unminified =
script [ _src "https://unpkg.com/htmx.org@1.9.0/dist/htmx.js"
_integrity "sha384-zeiPGhU5MGHaNAV6/ti/m1CChQCUxkLGY/3GVEVPGowI7V2AhfwLDg/zkXjRywCO"
script [ _src "https://unpkg.com/htmx.org@1.9.2/dist/htmx.js"
_integrity "sha384-8ADa8Z9mz9MtKHmL1vCmqgEM5Q7eIiradzjEpmeELJ4kex3ibvmnctBNHlpLr/Zl"
_crossorigin "anonymous" ] []