Skip to content

Commit

Permalink
Merge pull request #3687 from rgov/patch-1
Browse files Browse the repository at this point in the history
Fix uninitialized variable in basic usage example
  • Loading branch information
robwalch committed Mar 30, 2021
2 parents 07dbd9b + 566d498 commit d734f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/basic-usage.html
Expand Up @@ -12,8 +12,8 @@ <h1>Hls.js demo - basic usage</h1>
</center>

<script>
var video = document.getElementById('video');
if (Hls.isSupported()) {
var video = document.getElementById('video');
var hls = new Hls({
debug: true,
});
Expand Down

0 comments on commit d734f2c

Please sign in to comment.