diff options
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | src/js/plyr.d.ts | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -268,7 +268,7 @@ You can set them in your CSS for all players: ```html <video class="player" style="--plyr-color-main: #1ac266;"> ... -</vieo> +</video> ``` ### SASS @@ -834,6 +834,8 @@ Plyr costs money to run, not only my time. I donate my time for free as I enjoy - [Sparkk TV](https://www.sparkktv.com/) - [@halfhalftravel](https://www.halfhalftravel.com/) - [BitChute](https://www.bitchute.com) +- [Rutheneum-Bote](https://gymnasium-rutheneum.de/content/newspaper/kreativwettbewerb.php) +- [pressakey.com | Blog-Magazin für Videospiele](https://pressakey.com) If you want to be added to the list, open a pull request. It'd be awesome to see how you're using Plyr 😎 diff --git a/src/js/plyr.d.ts b/src/js/plyr.d.ts index ce8f428a..4b332aeb 100644 --- a/src/js/plyr.d.ts +++ b/src/js/plyr.d.ts @@ -362,7 +362,7 @@ declare namespace Plyr { /** * Specify a URL or path to a blank video file used to properly cancel network requests. */ - blankUrl?: string; + blankVideo?: string; /** * Autoplay the media on load. This is generally advised against on UX grounds. It is also disabled by default in some browsers. @@ -539,7 +539,7 @@ declare namespace Plyr { interface FullScreenOptions { enabled?: boolean; - fallback?: boolean; + fallback?: boolean | 'force'; allowAudio?: boolean; iosNative?: boolean; } |