1
0
mirror of https://github.com/videojs/video.js.git synced 2025-06-02 23:27:41 +02:00

Create 'track' element in the HTML5 shiv sample

Matches the shiv to the one at [the start of `src/js/core.js`](https://github.com/videojs/video.js/blob/master/src/js/core.js#L8).

Right now it's missing `track`.
This commit is contained in:
Phil Schleihauf 2014-02-10 15:40:32 -05:00
parent 11e7028c25
commit 71ba5bb062

View File

@ -14,7 +14,7 @@ You can download the Video.js source and host it on your own servers, or use the
> ```html
<script type="text/javascript">
document.createElement('video');document.createElement('audio');
document.createElement('video');document.createElement('audio');document.createElement('track');
</script>
```