Add some todo comments

This commit is contained in:
Gabe Kangas 2022-05-03 13:26:04 -07:00
parent 8b07eb7457
commit d65be6013a
No known key found for this signature in database
GPG key ID: 9A56337728BC81EA
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,4 @@
import React from 'react';
// This imports the functional component from the previous sample.
import VideoJS from './player';
export default function OwncastPlayer(props) {

View file

@ -3,6 +3,7 @@ import videojs from 'video.js';
require('video.js/dist/video-js.css');
// TODO: Restore volume that was saved in local storage.
// import { getLocalStorage, setLocalStorage } from '../../utils/helpers.js';
// import { PLAYER_VOLUME, URL_STREAM } from '../../utils/constants.js';
@ -23,6 +24,8 @@ export function VideoJS(props) {
onReady && onReady(player);
}));
// TODO: Add airplay support, video settings menu, latency compensator, etc.
// You can update player in the `else` block here, for example:
// } else {
player.autoplay(options.autoplay);