Verified Commit 8a3da3d4 authored by Dave Long's avatar Dave Long
Browse files

Issue #2927407 by Akram Khan, anmolgoyal74, droplet, Pooja Ganjage, Tom Konda,...

Issue #2927407 by Akram Khan, anmolgoyal74, droplet, Pooja Ganjage, Tom Konda, nod_, alexpott: Follow-up: remove unnecessary returns in ajax.js
parent 16d8f8f8
Loading
Loading
Loading
Loading
+1 −3
Changes for core/misc/ajax.js: 1 added line, 3 removed lines.
Original line number Diff line number Diff line
@@ -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);