summaryrefslogtreecommitdiffstatshomepage
path: root/www/content/extensions
diff options
context:
space:
mode:
Diffstat (limited to 'www/content/extensions')
-rw-r--r--www/content/extensions/_index.md2
-rw-r--r--www/content/extensions/ajax-header.md2
-rw-r--r--www/content/extensions/alpine-morph.md2
-rw-r--r--www/content/extensions/class-tools.md2
-rw-r--r--www/content/extensions/client-side-templates.md8
-rw-r--r--www/content/extensions/debug.md2
-rw-r--r--www/content/extensions/disable-element.md2
-rw-r--r--www/content/extensions/event-header.md2
-rw-r--r--www/content/extensions/head-support.md2
-rw-r--r--www/content/extensions/include-vals.md2
-rw-r--r--www/content/extensions/json-enc.md2
-rw-r--r--www/content/extensions/loading-states.md2
-rw-r--r--www/content/extensions/method-override.md2
-rw-r--r--www/content/extensions/morphdom-swap.md2
-rw-r--r--www/content/extensions/multi-swap.md2
-rw-r--r--www/content/extensions/path-deps.md2
-rw-r--r--www/content/extensions/path-params.md2
-rw-r--r--www/content/extensions/preload.md2
-rw-r--r--www/content/extensions/remove-me.md2
-rw-r--r--www/content/extensions/response-targets.md2
-rw-r--r--www/content/extensions/restored.md2
-rw-r--r--www/content/extensions/server-sent-events.md2
-rw-r--r--www/content/extensions/web-sockets.md2
23 files changed, 26 insertions, 26 deletions
diff --git a/www/content/extensions/_index.md b/www/content/extensions/_index.md
index 8bc04f09..342f3ff8 100644
--- a/www/content/extensions/_index.md
+++ b/www/content/extensions/_index.md
@@ -50,7 +50,7 @@ against `htmx` in each distribution.
### Installing Extensions {#installing}
-You can find the source for the bundled extensions at `https://unpkg.com/browse/htmx.org@1.9.11/dist/ext/`. You will need
+You can find the source for the bundled extensions at `https://unpkg.com/browse/htmx.org@1.9.12/dist/ext/`. You will need
to include the javascript file for the extension and then install it using the [hx-ext](@/attributes/hx-ext.md) attributes.
See the individual extension documentation for more details.
diff --git a/www/content/extensions/ajax-header.md b/www/content/extensions/ajax-header.md
index 8bd9838f..78969655 100644
--- a/www/content/extensions/ajax-header.md
+++ b/www/content/extensions/ajax-header.md
@@ -9,7 +9,7 @@ This header is commonly used by javascript frameworks to differentiate ajax requ
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/ajax-header.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/ajax-header.js"></script>
```
## Usage
diff --git a/www/content/extensions/alpine-morph.md b/www/content/extensions/alpine-morph.md
index 5f37b1bd..3f2a5a8d 100644
--- a/www/content/extensions/alpine-morph.md
+++ b/www/content/extensions/alpine-morph.md
@@ -7,7 +7,7 @@ Alpine.js now has a lightweight [morph plugin](https://alpinejs.dev/plugins/morp
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/alpine-morph.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/alpine-morph.js"></script>
```
## Usage
diff --git a/www/content/extensions/class-tools.md b/www/content/extensions/class-tools.md
index 27aa3041..a781f33d 100644
--- a/www/content/extensions/class-tools.md
+++ b/www/content/extensions/class-tools.md
@@ -18,7 +18,7 @@ optionally followed by a colon `:` and a time delay.
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/class-tools.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/class-tools.js"></script>
```
## Usage
diff --git a/www/content/extensions/client-side-templates.md b/www/content/extensions/client-side-templates.md
index afcdbca7..9d78771b 100644
--- a/www/content/extensions/client-side-templates.md
+++ b/www/content/extensions/client-side-templates.md
@@ -26,7 +26,7 @@ A second "array" version of each template is now offered, which is particularly
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/client-side-templates.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/client-side-templates.js"></script>
```
## Usage
@@ -66,7 +66,7 @@ a [`<template>` tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/t
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script src="https://unpkg.com/htmx.org"></script>
- <script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/client-side-templates.js"></script>
+ <script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/client-side-templates.js"></script>
<script src="https://unpkg.com/mustache@latest"></script>
</head>
<body>
@@ -99,7 +99,7 @@ Here's a working example using the `mustache-array-template` working against an
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script src="https://unpkg.com/htmx.org"></script>
- <script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/client-side-templates.js"></script>
+ <script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/client-side-templates.js"></script>
<script src="https://unpkg.com/mustache@latest"></script>
</head>
<body>
@@ -140,7 +140,7 @@ Some styling is needed to keep the object visible while not taking any space.
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script src="https://unpkg.com/htmx.org"></script>
- <script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/client-side-templates.js"></script>
+ <script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/client-side-templates.js"></script>
</head>
<body>
<div hx-ext="client-side-templates">
diff --git a/www/content/extensions/debug.md b/www/content/extensions/debug.md
index e56c1341..e006fa85 100644
--- a/www/content/extensions/debug.md
+++ b/www/content/extensions/debug.md
@@ -8,7 +8,7 @@ or through the `console.log` function with a `DEBUG:` prefix.
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/debug.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/debug.js"></script>
```
## Usage
diff --git a/www/content/extensions/disable-element.md b/www/content/extensions/disable-element.md
index c2dc7911..82e9acd9 100644
--- a/www/content/extensions/disable-element.md
+++ b/www/content/extensions/disable-element.md
@@ -9,7 +9,7 @@ This extension disables an element during an htmx request, when configured on th
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/disable-element.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/disable-element.js"></script>
```
## Usage
diff --git a/www/content/extensions/event-header.md b/www/content/extensions/event-header.md
index c2331b04..b0d57d18 100644
--- a/www/content/extensions/event-header.md
+++ b/www/content/extensions/event-header.md
@@ -9,7 +9,7 @@ request.
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/event-header.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/event-header.js"></script>
```
## Usage
diff --git a/www/content/extensions/head-support.md b/www/content/extensions/head-support.md
index 62690dd0..e0e55fed 100644
--- a/www/content/extensions/head-support.md
+++ b/www/content/extensions/head-support.md
@@ -18,7 +18,7 @@ This extension addresses that shortcoming & will likely be integrated into htmx
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/head-support.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/head-support.js"></script>
```
## Usage
diff --git a/www/content/extensions/include-vals.md b/www/content/extensions/include-vals.md
index a4d25790..5aa62f16 100644
--- a/www/content/extensions/include-vals.md
+++ b/www/content/extensions/include-vals.md
@@ -9,7 +9,7 @@ will be evaluated as the fields in a javascript object literal.
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/include-vals.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/include-vals.js"></script>
```
## Usage
diff --git a/www/content/extensions/json-enc.md b/www/content/extensions/json-enc.md
index de406689..1303a497 100644
--- a/www/content/extensions/json-enc.md
+++ b/www/content/extensions/json-enc.md
@@ -7,7 +7,7 @@ This extension encodes parameters in JSON format instead of url format.
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/json-enc.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/json-enc.js"></script>
```
## Usage
diff --git a/www/content/extensions/loading-states.md b/www/content/extensions/loading-states.md
index a26049ab..cf9ac641 100644
--- a/www/content/extensions/loading-states.md
+++ b/www/content/extensions/loading-states.md
@@ -7,7 +7,7 @@ This extension allows you to easily manage loading states while a request is in
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/loading-states.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/loading-states.js"></script>
```
## Usage
diff --git a/www/content/extensions/method-override.md b/www/content/extensions/method-override.md
index 4dbb09da..1497d715 100644
--- a/www/content/extensions/method-override.md
+++ b/www/content/extensions/method-override.md
@@ -8,7 +8,7 @@ actual HTTP method. This is necessary when dealing with some firewall or proxy
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/method-override.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/method-override.js"></script>
```
### Usage
diff --git a/www/content/extensions/morphdom-swap.md b/www/content/extensions/morphdom-swap.md
index 6fad554b..396f4a6a 100644
--- a/www/content/extensions/morphdom-swap.md
+++ b/www/content/extensions/morphdom-swap.md
@@ -10,7 +10,7 @@ The `morphdom` library does not support morph element to multiple elements. If t
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/morphdom-swap.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/morphdom-swap.js"></script>
```
### Usage
diff --git a/www/content/extensions/multi-swap.md b/www/content/extensions/multi-swap.md
index 60183bd2..c34e464e 100644
--- a/www/content/extensions/multi-swap.md
+++ b/www/content/extensions/multi-swap.md
@@ -11,7 +11,7 @@ It is a very powerful tool in conjunction with `hx-boost` and `preload` extensio
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/multi-swap.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/multi-swap.js"></script>
```
## Usage
diff --git a/www/content/extensions/path-deps.md b/www/content/extensions/path-deps.md
index f40ef127..e87c0a38 100644
--- a/www/content/extensions/path-deps.md
+++ b/www/content/extensions/path-deps.md
@@ -27,7 +27,7 @@ You can use a `*` to match any path component:
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/path-deps.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/path-deps.js"></script>
```
## Usage
diff --git a/www/content/extensions/path-params.md b/www/content/extensions/path-params.md
index 9fd6726e..9728776e 100644
--- a/www/content/extensions/path-params.md
+++ b/www/content/extensions/path-params.md
@@ -7,7 +7,7 @@ This extension uses request parameters to populate path variables. Used paramete
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/path-params.js">
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/path-params.js">
```
## Usage
diff --git a/www/content/extensions/preload.md b/www/content/extensions/preload.md
index a7e52629..48ea77cb 100644
--- a/www/content/extensions/preload.md
+++ b/www/content/extensions/preload.md
@@ -9,7 +9,7 @@ The `preload` extension allows you to load HTML fragments into your browser's ca
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/preload.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/preload.js"></script>
```
## Usage
diff --git a/www/content/extensions/remove-me.md b/www/content/extensions/remove-me.md
index 2e468601..6d8b1f90 100644
--- a/www/content/extensions/remove-me.md
+++ b/www/content/extensions/remove-me.md
@@ -7,7 +7,7 @@ The `remove-me` extension allows you to remove an element after a specified inte
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/remove-me.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/remove-me.js"></script>
```
## Usage
diff --git a/www/content/extensions/response-targets.md b/www/content/extensions/response-targets.md
index 992674f4..ae9c48a6 100644
--- a/www/content/extensions/response-targets.md
+++ b/www/content/extensions/response-targets.md
@@ -24,7 +24,7 @@ The value of each attribute can be:
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/response-targets.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/response-targets.js"></script>
```
## Configure (optional)
diff --git a/www/content/extensions/restored.md b/www/content/extensions/restored.md
index 3f14f6a7..9e84b689 100644
--- a/www/content/extensions/restored.md
+++ b/www/content/extensions/restored.md
@@ -7,7 +7,7 @@ This extension triggers an event ``restored`` whenever a back button even is det
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/restored.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/restored.js"></script>
```
## Usage
diff --git a/www/content/extensions/server-sent-events.md b/www/content/extensions/server-sent-events.md
index 13466dbf..362e264c 100644
--- a/www/content/extensions/server-sent-events.md
+++ b/www/content/extensions/server-sent-events.md
@@ -18,7 +18,7 @@ Use the following attributes to configure how SSE connections behave:
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/sse.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/sse.js"></script>
```
## Usage
diff --git a/www/content/extensions/web-sockets.md b/www/content/extensions/web-sockets.md
index edb6cfef..a6d2410c 100644
--- a/www/content/extensions/web-sockets.md
+++ b/www/content/extensions/web-sockets.md
@@ -19,7 +19,7 @@ Use the following attributes to configure how WebSockets behave:
## Install
```html
-<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/ws.js"></script>
+<script src="https://unpkg.com/htmx.org@1.9.12/dist/ext/ws.js"></script>
```
## Usage