diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-05-10 10:54:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 10:54:31 +0200 |
commit | beeb410ccbe1c4108ee93bdbdc05e003f115baf6 (patch) | |
tree | 53134a48cdb30f91f4a39048ea011a9904793890 /tests/lib/bootstrap.js | |
parent | 546214e86956804a1b02da173a4c6c5ddea11454 (diff) | |
download | jquery-ui-beeb410ccbe1c4108ee93bdbdc05e003f115baf6.tar.gz jquery-ui-beeb410ccbe1c4108ee93bdbdc05e003f115baf6.zip |
Build: Add jQuery 3.6.4, update Migrate to 3.4.1
Closes gh-2161
Diffstat (limited to 'tests/lib/bootstrap.js')
-rw-r--r-- | tests/lib/bootstrap.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index a5bb1711b..ea699a1e9 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -1,7 +1,7 @@ ( function() { "use strict"; -var DEFAULT_JQUERY_VERSION = "3.6.3"; +var DEFAULT_JQUERY_VERSION = "3.6.4"; requirejs.config( { paths: { @@ -123,7 +123,7 @@ function migrateUrl() { if ( jqueryVersion === "git" ) { url = "https://releases.jquery.com/git/jquery-migrate-git"; } else if ( jqueryVersion[ 0 ] === "3" ) { - url = "../../../external/jquery-migrate-3.4.0/jquery-migrate"; + url = "../../../external/jquery-migrate-3.4.1/jquery-migrate"; } else if ( jqueryVersion[ 0 ] === "1" || jqueryVersion[ 0 ] === "2" ) { url = "../../../external/jquery-migrate-1.4.1/jquery-migrate"; } else if ( jqueryVersion === "custom" ) { |