-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* FEATURES Add option to configure visibility of player controls and to fully hide them. Make base theme configurable: audio controls, full screen button, track controls. Add support for UI cues. Add support for companion component above the bottom bar of player controls. * FIXES Fix rounding of video duration. Now all values with remainder 0.8 and higher are rounded UP instead of down, to produce a more accurate value. * REFACTOR Remove unnecessary private annotations. Cleanup: detach listeners from PRESTO instance. Allow presto instance to be null. * APP Move index.html to root folder. Add mux.js to support HLS playback. * TOOLING Add prepack script, this way it is easy to pack TGZ NPM packages for local use. The ESLint rule is getting miss-reported `@typescript-eslint/no-unsafe-assignment`, I'm not sure why, but let's just ignore it for now.
- Loading branch information
1 parent
4807ad2
commit 88cb5a7
Showing
30 changed files
with
454 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/mux.js"></script> | ||
<title>PRESTOplay React Components</title> | ||
</head> | ||
<body> | ||
<noscript> | ||
You need to enable JavaScript to run this app. | ||
</noscript> | ||
<div id="root"></div> | ||
<script src="./dist/bundle.js"></script> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.