From 7d7c3c541f1613b246ec6640bfbf73a57dd60152 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Mon, 10 Aug 2020 21:42:59 +0100 Subject: [PATCH] Update 2020-08-10-react-v17-rc.md --- content/blog/2020-08-10-react-v17-rc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2020-08-10-react-v17-rc.md b/content/blog/2020-08-10-react-v17-rc.md index d55d4e65..4c29ad60 100644 --- a/content/blog/2020-08-10-react-v17-rc.md +++ b/content/blog/2020-08-10-react-v17-rc.md @@ -114,7 +114,7 @@ We've kept the breaking changes in React 17 to the minimum. For example, it does We've made a couple of smaller changes related to the event system: * The `onScroll` event **no longer bubbles** to prevent [common confusion](https://github.com/facebook/react/issues/15723). -* React `onFocus` and `onBlur` events have switched to using the native `focusin` and `focusout` events under the hood, which more closely match the React's existing behavior and sometimes provide extra information. +* React `onFocus` and `onBlur` events have switched to using the native `focusin` and `focusout` events under the hood, which more closely match React's existing behavior and sometimes provide extra information. * Capture phase events (e.g. `onClickCapture`) now use real browser capture phase listeners. These changes align React closer with the browser behavior and improve interoperability.