1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-25 02:42:10 +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))
* @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))
* @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>
<script>
vid = document.getElementById("vid1");
var vid = document.getElementById("vid1");
</script>
</body>