Skip to content

Commit 20df248

Browse files
authored
docs: update version number in README.md (#8271)
1 parent 35fad1d commit 20df248

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
Thanks to the awesome folks over at [Fastly][fastly], there's a free, CDN hosted version of Video.js that anyone can use. Add these tags to your document's `<head>`:
2424

2525
```html
26-
<link href="//vjs.zencdn.net/7.10.2/video-js.min.css" rel="stylesheet">
27-
<script src="//vjs.zencdn.net/7.10.2/video.min.js"></script>
26+
<link href="//vjs.zencdn.net/8.3.0/video-js.min.css" rel="stylesheet">
27+
<script src="//vjs.zencdn.net/8.3.0/video.min.js"></script>
2828
```
2929

3030
> For the latest version of video.js and URLs to use, check out the [Getting Started][getting-started] page on our website.
@@ -45,12 +45,12 @@ Alternatively, you can include Video.js by getting it from [npm](https://videojs
4545
<script src="https://unpkg.com/video.js/dist/video.min.js"></script>
4646

4747
<!-- unpkg : use a specific version of Video.js (change the version numbers as necessary) -->
48-
<link href="https://unpkg.com/video.js@7.10.2/dist/video-js.min.css" rel="stylesheet">
49-
<script src="https://unpkg.com/video.js@7.10.2/dist/video.min.js"></script>
48+
<link href="https://unpkg.com/video.js@8.3.0/dist/video-js.min.css" rel="stylesheet">
49+
<script src="https://unpkg.com/video.js@8.3.0/dist/video.min.js"></script>
5050

5151
<!-- cdnjs : use a specific version of Video.js (change the version numbers as necessary) -->
52-
<link href="https://cdnjs.cloudflare.com/ajax/libs/video.js/7.10.2/video-js.min.css" rel="stylesheet">
53-
<script src="https://cdnjs.cloudflare.com/ajax/libs/video.js/7.10.2/video.min.js"></script>
52+
<link href="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.3.0/video-js.min.css" rel="stylesheet">
53+
<script src="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.3.0/video.min.js"></script>
5454
```
5555

5656
Next, using Video.js is as simple as creating a `<video>` element, but with an additional `data-setup` attribute. At a minimum, this attribute must have a value of `'{}'`, but it can include any Video.js [options][options] - just make sure it contains valid JSON!

0 commit comments

Comments
 (0)