From 8a3da3d43f2bd590d2fac5e3640f3cf7a7659d15 Mon Sep 17 00:00:00 2001 From: Dave Long <dave@longwaveconsulting.com> Date: Thu, 24 Nov 2022 13:59:45 +0000 Subject: [PATCH] Issue #2927407 by Akram Khan, anmolgoyal74, droplet, Pooja Ganjage, Tom Konda, nod_, alexpott: Follow-up: remove unnecessary returns in ajax.js --- core/misc/ajax.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/misc/ajax.js b/core/misc/ajax.js index c8c8eb1cd39e..e8d8079929c2 100644 --- a/core/misc/ajax.js +++ b/core/misc/ajax.js @@ -49,9 +49,7 @@ } // Load all Ajax behaviors specified in the settings. - Object.keys(settings.ajax || {}).forEach((base) => - loadAjaxBehavior(base), - ); + Object.keys(settings.ajax || {}).forEach(loadAjaxBehavior); Drupal.ajax.bindAjaxLinks(document.body); -- GitLab