From ab76296f7af513773dfc1013984589f0094a8955 Mon Sep 17 00:00:00 2001 From: Ben Croker <57572400+bencroker@users.noreply.github.com> Date: Wed, 2 Sep 2020 21:58:42 +0200 Subject: [PATCH] Removed redundant parameter --- src/htmx.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/htmx.js b/src/htmx.js index f5e68da9..83823699 100644 --- a/src/htmx.js +++ b/src/htmx.js @@ -452,7 +452,7 @@ return (function () { function makeAjaxLoadTask(child) { return function () { - processNode(child, true); + processNode(child); processScripts(child); triggerEvent(child, 'htmx:load', {}); }; @@ -1757,7 +1757,7 @@ return (function () { mergeMetaConfig(); insertIndicatorStyles(); var body = getDocument().body; - processNode(body, true); + processNode(body); triggerEvent(body, 'htmx:load', {}); window.onpopstate = function (event) { if (event.state && event.state.htmx) {