Skip to content

Commit

Permalink
Allow start with native HLS
Browse files Browse the repository at this point in the history
  • Loading branch information
avelad committed Nov 18, 2024
1 parent 886075d commit 5eb4d57
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ function setupUI () {
nativeHlsInput.id = 'native-hls-input';
nativeHlsInput.type = 'checkbox';
nativeHlsInput.classList.add('config-input');
if ('hls' in params) {
nativeHlsInput.checked = true;
}
configContainer.appendChild(document.createElement('br'));
configContainer.appendChild(nativeHlsLabel);
configContainer.appendChild(nativeHlsInput);
Expand Down

0 comments on commit 5eb4d57

Please sign in to comment.