Skip to content

Commit 9afaf67

Browse files
konklonegnarf
authored andcommitted
Switch links to code.jquery.com urls to be https now that everything supports it.
Closes jquerygh-628
1 parent 10081d7 commit 9afaf67

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

page/jquery-mobile/getting-started.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ In the `<body>`, a div with a `data-role` of `page` is the wrapper used to delin
1919
<head>
2020
<title>My Page</title>
2121
<meta name="viewport" content="width=device-width, initial-scale=1">
22-
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
23-
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
24-
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
22+
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
23+
<script src="https://code.jquery.com/jquery-1.8.2.min.js"></script>
24+
<script src="https://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
2525
</head>
2626
<body>
2727
<div data-role="page">

page/jquery-mobile/theme-roller.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ To start using your theme, you can either start from the provided `index.html`,
6363
<meta charset="utf-8">
6464
<meta name="viewport" content="width=device-width, initial-scale=1">
6565
<link rel="stylesheet" href="css/themes/my-custom-theme.css">
66-
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile.structure-1.2.0.min.css">
67-
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
68-
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
66+
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.2.0/jquery.mobile.structure-1.2.0.min.css">
67+
<script src="https://code.jquery.com/jquery-1.8.2.min.js"></script>
68+
<script src="https://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
6969
</head>
7070
```
7171

page/jquery-ui/environments.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"level": "intermediate"
44
}</script>
55

6-
In addition to being available on [CDN](http://code.jquery.com/)s and [Download Builder](http://jqueryui.com/download/), jQuery UI also integrates into a number of development environments.
6+
In addition to being available on [CDN](https://code.jquery.com/)s and [Download Builder](http://jqueryui.com/download/), jQuery UI also integrates into a number of development environments.

page/performance/read-the-source.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"attribution": [ "jQuery Fundamentals" ]
66
}</script>
77

8-
Use the source as your documentation. Bookmark [the source code](http://code.jquery.com/jquery/) and refer to it often.
8+
Use the source as your documentation. Bookmark [the source code](https://code.jquery.com/jquery/) and refer to it often.

page/using-jquery-core/document-ready.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The example below shows `$( document ).ready()` and `$( window ).load()` in acti
4040
```
4141
<html>
4242
<head>
43-
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
43+
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
4444
<script>
4545
$( document ).ready(function() {
4646
console.log( "document loaded" );

0 commit comments

Comments
 (0)