From 5fa0db48d73887facf891eb05b43c443b5baeca3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Thu, 18 Aug 2022 13:28:26 +0200 Subject: [PATCH] Core: Fix dependencies in ui/core.js The `jquery-patch` reference was included with the `.js` extension which is not allowed in AMD. Fixes gh-2107 Closes gh-2109 --- ui/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/core.js b/ui/core.js index e2dd53007..862851391 100644 --- a/ui/core.js +++ b/ui/core.js @@ -11,7 +11,7 @@ define( [ "./ie", "./keycode", "./labels", - "./jquery-patch.js", + "./jquery-patch", "./plugin", "./safe-active-element", "./safe-blur", -- 2.39.5