Skip to content

Commit c3749ca

Browse files
committed
Tests: Take development jQuery versions from releases.jquery.com
code.jquery.com is now used just for the specific versions.
1 parent 232fe3b commit c3749ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/lib/bootstrap.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function jqueryUrl() {
108108
var url;
109109

110110
if ( version === "git" || version === "3.x-git" ) {
111-
url = "https://code.jquery.com/jquery-" + version;
111+
url = "https://releases.jquery.com/git/jquery-" + version;
112112
} else {
113113
url = "../../../external/jquery-" + version + "/jquery";
114114
}
@@ -121,7 +121,7 @@ function migrateUrl() {
121121
var url;
122122

123123
if ( jqueryVersion === "git" ) {
124-
url = "https://code.jquery.com/jquery-migrate-git";
124+
url = "https://releases.jquery.com/git/jquery-migrate-git";
125125
} else if ( jqueryVersion[ 0 ] === "3" ) {
126126
url = "../../../external/jquery-migrate-3.3.2/jquery-migrate";
127127
} else if ( jqueryVersion[ 0 ] === "1" || jqueryVersion[ 0 ] === "2" ) {

0 commit comments

Comments
 (0)