We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3e35f0 commit 7349ec8Copy full SHA for 7349ec8
test/jquery.js
@@ -15,10 +15,8 @@ for ( ; i < length; i++ ) {
15
}
16
17
18
-if ( version === "git" ) {
19
- url = "http://code.jquery.com/jquery-git.js";
20
-} else if ( version === "3.x-git" ) {
21
- url = "http://code.jquery.com/jquery-3.x-git.js";
+if ( version === "git" || version === "3.x-git" ) {
+ url = "https://code.jquery.com/jquery-" + version + ".js";
22
} else {
23
url = "../external/jquery-" + ( version || "3.4.1" ) + "/jquery.js";
24
0 commit comments