From f725c2c09e367e8e000578301e92f229fcfe6800 Mon Sep 17 00:00:00 2001 From: David Czulada Date: Fri, 12 Jun 2026 15:51:39 -0400 Subject: [PATCH] change way jquery2-core is loaded --- vendor/javascript/jquery2_global.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vendor/javascript/jquery2_global.js b/vendor/javascript/jquery2_global.js index bc17fe147..67d0bdbfd 100644 --- a/vendor/javascript/jquery2_global.js +++ b/vendor/javascript/jquery2_global.js @@ -1,6 +1,7 @@ -import $ from "jquery2-core"; +import "jquery2-core"; + +const $ = window.jQuery || window.$; -// Make the imported instance the global one used by plugins window.$ = $; window.jQuery = $;