Skip to content

Commit f52376f

Browse files
authored
Merge pull request #2125 from h5bp/html-docs-update
update jQuery and Modernizr (Docs)
2 parents 6badd51 + 035fa65 commit f52376f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Diff for: dist/doc/html.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ control over the UI of a saved site or web app on a mobile device.
8080
It's linked to from the HTML as follows:
8181

8282
```html
83-
<link rel="manifest" href="site.webmanifest">
83+
<link rel="manifest" href="site.webmanifest">
8484
```
8585
Our [site.webmanifest](https://github.com/h5bp/html5-boilerplate/blob/master/src/site.webmanifest) contains a very skeletal "app" definition, just to show the basic usage.
8686
You should fill this file out with [more information about your site or application](https://developer.mozilla.org/en-US/docs/Web/Manifest)
@@ -128,10 +128,10 @@ using a polyfill CDN service, like [cdn.polyfill.io](https://cdn.polyfill.io/),
128128
just put it before the other scripts in the bottom of the page:
129129

130130
```html
131-
<script src="js/vendor/modernizr-3.6.0.min.js"></script>
131+
<script src="js/vendor/modernizr-3.7.1.min.js"></script>
132132
<script src="https://cdn.polyfill.io/v3/polyfill.min.js"></script>
133-
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
134-
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.3.1.min.js"><\/script>')</script>
133+
<script src="https://code.jquery.com/jquery-3.4.0.min.js" integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg=" crossorigin="anonymous"></script>
134+
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.4.0.min.js"><\/script>')</script>
135135
<script src="js/plugins.js"></script>
136136
<script src="js/main.js"></script>
137137
</body>

Diff for: src/doc/html.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ control over the UI of a saved site or web app on a mobile device.
8080
It's linked to from the HTML as follows:
8181

8282
```html
83-
<link rel="manifest" href="site.webmanifest">
83+
<link rel="manifest" href="site.webmanifest">
8484
```
8585
Our [site.webmanifest](https://github.com/h5bp/html5-boilerplate/blob/master/src/site.webmanifest) contains a very skeletal "app" definition, just to show the basic usage.
8686
You should fill this file out with [more information about your site or application](https://developer.mozilla.org/en-US/docs/Web/Manifest)
@@ -128,10 +128,10 @@ using a polyfill CDN service, like [cdn.polyfill.io](https://cdn.polyfill.io/),
128128
just put it before the other scripts in the bottom of the page:
129129

130130
```html
131-
<script src="js/vendor/modernizr-3.6.0.min.js"></script>
131+
<script src="js/vendor/modernizr-3.7.1.min.js"></script>
132132
<script src="https://cdn.polyfill.io/v3/polyfill.min.js"></script>
133-
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
134-
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.3.1.min.js"><\/script>')</script>
133+
<script src="https://code.jquery.com/jquery-3.4.0.min.js" integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg=" crossorigin="anonymous"></script>
134+
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.4.0.min.js"><\/script>')</script>
135135
<script src="js/plugins.js"></script>
136136
<script src="js/main.js"></script>
137137
</body>

0 commit comments

Comments
 (0)