Skip to content

Feature: add extensionsToIgnore to withExtensions #3195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/htmx.js
Original file line number Diff line number Diff line change
Expand Up @@ -3009,15 +3009,17 @@ var htmx = (function() {

/**
* `withExtensions` locates all active extensions for a provided element, then
* executes the provided function using each of the active extensions. It should
* executes the provided function using each of the active extensions. You can filter
* the element's extensions by giving it a list of extensions to ignore. It should
* be called internally at every extendable execution point in htmx.
*
* @param {Element} elt
* @param {(extension:HtmxExtension) => void} toDo
* @param {string[]=} extensionsToIgnore
* @returns void
*/
function withExtensions(elt, toDo) {
forEach(getExtensions(elt), function(extension) {
function withExtensions(elt, toDo, extensionsToIgnore) {
forEach(getExtensions(elt, [], extensionsToIgnore), function(extension) {
try {
toDo(extension)
} catch (e) {
Expand Down