Skip to content

Commit

Permalink
Update minified video.js name
Browse files Browse the repository at this point in the history
Change the docs to point to the new minified name for video.js. For videojs#1013.
  • Loading branch information
dmlap committed Apr 29, 2015
1 parent cf25d3a commit e234375
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/examples/simple-embed/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<title>Video.js | HTML5 Video Player</title>

<!-- Chang URLs to wherever Video.js files will be hosted -->
<link href="../../video-js.css" rel="stylesheet" type="text/css">
<link href="../../../build/temp/video-js.min.css" rel="stylesheet" type="text/css">
<!-- video.js must be in the <head> for older IEs to work. -->
<script src="../../video.js"></script>
<script src="../../../build/temp/video.min.js"></script>

<!-- Unless using the CDN hosted version, update the URL to the Flash SWF -->
<script>
videojs.options.flash.swf = "../../video-js.swf";
videojs.options.flash.swf = "../../../build/temp/video-js.swf";
</script>

</head>
Expand Down
8 changes: 4 additions & 4 deletions docs/guides/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ You can download the Video.js source and host it on your own servers, or use the
### CDN Version ###
```html
<link href="//vjs.zencdn.net/4.12/video-js.css" rel="stylesheet">
<script src="//vjs.zencdn.net/4.12/video.js"></script>
<link href="//vjs.zencdn.net/4.12/video-js.min.css" rel="stylesheet">
<script src="//vjs.zencdn.net/4.12/video.min.js"></script>
```


Expand All @@ -43,8 +43,8 @@ To entirely self-host, you'll need to pull in the font files and let Video.js kn
should Just Work™, but the paths can easily be changed by editing the LESS file and re-building, or by modifying the generated CSS file.

```html
<link href="//example.com/path/to/video-js.css" rel="stylesheet">
<script src="//example.com/path/to/video.js"></script>
<link href="//example.com/path/to/video-js.min.css" rel="stylesheet">
<script src="//example.com/path/to/video.min.js"></script>
<script>
videojs.options.flash.swf = "http://example.com/path/to/video-js.swf"
</script>
Expand Down

0 comments on commit e234375

Please sign in to comment.