aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2022-08-18 13:28:26 +0200
committerGitHub <noreply@github.com>2022-08-18 13:28:26 +0200
commit5fa0db48d73887facf891eb05b43c443b5baeca3 (patch)
tree31d809cc9f5bd52593f9499dfa52195d2b739c33
parent4bae79d534aa62a6383d12cbfbeb1d0eea4afe8b (diff)
downloadjquery-ui-5fa0db48d73887facf891eb05b43c443b5baeca3.tar.gz
jquery-ui-5fa0db48d73887facf891eb05b43c443b5baeca3.zip
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
-rw-r--r--ui/core.js2
1 files changed, 1 insertions, 1 deletions
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",