diff options
author | Carson Gross <carson@bigsky.software> | 2023-09-21 16:57:28 -0600 |
---|---|---|
committer | Carson Gross <carson@bigsky.software> | 2023-09-21 16:57:28 -0600 |
commit | a5fd1b7081645e31d1a3af50a7b6e24a152271b0 (patch) | |
tree | 381a85e695c0483e2471a5afd1ecff55f9615f6e /src/htmx.js | |
parent | aa7ae144b5f29077f30f3d67103c26d8fe6d4980 (diff) | |
download | htmx-a5fd1b7081645e31d1a3af50a7b6e24a152271b0.tar.gz htmx-a5fd1b7081645e31d1a3af50a7b6e24a152271b0.zip |
make singular to make more consistent w/ other attributes
Diffstat (limited to 'src/htmx.js')
-rw-r--r-- | src/htmx.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmx.js b/src/htmx.js index 294eb1be..0d8c0cfb 100644 --- a/src/htmx.js +++ b/src/htmx.js @@ -2345,7 +2345,7 @@ return (function () { } function disableElements(elt) { - var disabledElts = findAttributeTargets(elt, 'hx-disabled-elts'); + var disabledElts = findAttributeTargets(elt, 'hx-disabled-elt'); if (disabledElts == null) { disabledElts = []; } |