diff options
author | Guilherme J. Tramontina <guilherme.tramontina@gmail.com> | 2024-06-19 03:45:05 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 11:45:05 -0600 |
commit | a15fcafb8ad2727c18df2a43336113dded1311f5 (patch) | |
tree | 0aac5e8d625c32c1818fba9040fee430da4572be | |
parent | f27e3495bd51671371640312ae84f410545cc0bf (diff) | |
download | htmx-a15fcafb8ad2727c18df2a43336113dded1311f5.tar.gz htmx-a15fcafb8ad2727c18df2a43336113dded1311f5.zip |
fix 3rd party lib name in example doc (#2632)
-rw-r--r-- | www/content/docs.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/content/docs.md b/www/content/docs.md index 910e383b..7084dab8 100644 --- a/www/content/docs.md +++ b/www/content/docs.md @@ -888,7 +888,7 @@ First we need to initialize elements that have the class in new content: ```javascript htmx.onLoad(function (target) { // find all elements in the new content that should be - // an editor and init w/ quill + // an editor and init w/ TomSelect var editors = target.querySelectorAll(".tomselect") .forEach(elt => new TomSelect(elt)) }); |