From 372853c09149cdc54536ba837bea2ae4d008f2d7 Mon Sep 17 00:00:00 2001 From: Wesley Luyten Date: Wed, 28 Feb 2024 16:27:47 -0600 Subject: [PATCH] docs: remove polyfills section, outdated --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 413413c0..15e96f26 100644 --- a/README.md +++ b/README.md @@ -58,11 +58,6 @@ The component parses a URL and loads in the appropriate markup and external SDKs For platforms without direct use of `npm` modules, a minified version of `ReactPlayer` is located in `dist` after installing. To generate this file yourself, checkout the repo and run `npm run build:dist`. -#### Polyfills - -* If you are using `npm` and need to support [browsers without `Promise`](http://caniuse.com/#feat=promises) you will need a [`Promise` polyfill](https://github.com/stefanpenner/es6-promise). -* To support IE11 you will need to use [`babel-polyfill`](https://babeljs.io/docs/usage/polyfill) or a similar ES2015+ polyfill. - #### Autoplay As of Chrome 66, [videos must be `muted` in order to play automatically](https://www.theverge.com/2018/3/22/17150870/google-chrome-autoplay-videos-sound-mute-update). Some players, like Facebook, cannot be unmuted until the user interacts with the video, so you may want to enable `controls` to allow users to unmute videos themselves. Please set `muted={true}`.