1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-13 10:32:26 +02:00

@defli added missing var to sandbox index.html example. closes #3155

This commit is contained in:
Can Küçükyılmaz 2016-03-07 14:58:02 -05:00 committed by Gary Katsevman
parent c1112b74fe
commit f4bc3c12b5
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ CHANGELOG
* @BrandonOCasey converted remaining text-track modules to ES6 ([view](https://github.com/videojs/video.js/pull/3130)) * @BrandonOCasey converted remaining text-track modules to ES6 ([view](https://github.com/videojs/video.js/pull/3130))
* @gkatsev cleared waiting/spinner on timeupdate. Fixes #3124 ([view](https://github.com/videojs/video.js/pull/3138)) * @gkatsev cleared waiting/spinner on timeupdate. Fixes #3124 ([view](https://github.com/videojs/video.js/pull/3138))
* @BrandonOCasey updated text track unit tests to use full es6 syntax ([view](https://github.com/videojs/video.js/pull/3148)) * @BrandonOCasey updated text track unit tests to use full es6 syntax ([view](https://github.com/videojs/video.js/pull/3148))
* @defli added missing var to sandbox index.html example ([view](https://github.com/videojs/video.js/pull/3155))
-------------------- --------------------

View File

@ -37,7 +37,7 @@
</video> </video>
<script> <script>
vid = document.getElementById("vid1"); var vid = document.getElementById("vid1");
</script> </script>
</body> </body>