Skip to content

Commit 3b1d3b8

Browse files
authored
Merge pull request #1 from GoogleChromeLabs/https-4-lyfe
Always use https:// explicitly
2 parents 6e2b1df + b19c752 commit 3b1d3b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Performance is quite good in Firefox and Safari courtesy of `-webkit-canvas()` a
1515
```html
1616
<script src="css-paint-polyfill.js"></script>
1717
<!-- or: -->
18-
<script src="//unpkg.com/css-paint-polyfill/dist/css-paint-polyfill.js"></script>
18+
<script src="https://unpkg.com/css-paint-polyfill/dist/css-paint-polyfill.js"></script>
1919
```
2020

2121
Or with a bundler:
@@ -27,7 +27,7 @@ import 'css-paint-polyfill';
2727
... or with ES Modules on the web:
2828

2929
```js
30-
import('//unpkg.com/css-paint-polyfill/dist/css-paint-polyfill.js');
30+
import('https://unpkg.com/css-paint-polyfill/dist/css-paint-polyfill.js');
3131
```
3232

3333
# To-Do

0 commit comments

Comments
 (0)