From ec4dc73b8f9661cc16cd358a87d52e6a50a2a8d6 Mon Sep 17 00:00:00 2001 From: Liam O'Boyle Date: Wed, 29 Nov 2017 09:02:08 +1100 Subject: [PATCH] Note that polyfills are required for some supported browsers too. The "Browser Support" section of react-dom indicates that IE9 and above is supported, but fails to note that the support does require additional polyfills in some cases. A link is added to the javascript environment docs which already explains the polyfills required (Map, Set and rAF). --- content/docs/reference-react-dom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/reference-react-dom.md b/content/docs/reference-react-dom.md index 043064e2..d02ad369 100644 --- a/content/docs/reference-react-dom.md +++ b/content/docs/reference-react-dom.md @@ -20,7 +20,7 @@ The `react-dom` package provides DOM-specific methods that can be used at the to ### Browser Support -React supports all popular browsers, including Internet Explorer 9 and above. +React supports all popular browsers, including Internet Explorer 9 and above, although [some polyfills are required](docs/javascript-environment-requirements.html) for older browsers. > Note >