diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2021-09-29 19:07:43 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2021-09-29 19:07:43 +0200 |
commit | c3749ca92474c892876acfcde4806149536a18f0 (patch) | |
tree | 05effb5ca610e773b3e13ae83a731be1c77f9ea4 /tests | |
parent | 232fe3bafad09ac8fe0270cd5d09ff6b47bee76c (diff) | |
download | jquery-ui-c3749ca92474c892876acfcde4806149536a18f0.tar.gz jquery-ui-c3749ca92474c892876acfcde4806149536a18f0.zip |
Tests: Take development jQuery versions from releases.jquery.com
code.jquery.com is now used just for the specific versions.
Diffstat (limited to 'tests')
-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 7fd56210c..1f80b33b9 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -108,7 +108,7 @@ function jqueryUrl() { var url; if ( version === "git" || version === "3.x-git" ) { - url = "https://code.jquery.com/jquery-" + version; + url = "https://releases.jquery.com/git/jquery-" + version; } else { url = "../../../external/jquery-" + version + "/jquery"; } @@ -121,7 +121,7 @@ function migrateUrl() { var url; if ( jqueryVersion === "git" ) { - url = "https://code.jquery.com/jquery-migrate-git"; + url = "https://releases.jquery.com/git/jquery-migrate-git"; } else if ( jqueryVersion[ 0 ] === "3" ) { url = "../../../external/jquery-migrate-3.3.2/jquery-migrate"; } else if ( jqueryVersion[ 0 ] === "1" || jqueryVersion[ 0 ] === "2" ) { |