From 0e95e8e76d13c7e38807baa265985f9df21217ae Mon Sep 17 00:00:00 2001 From: Wincent Colaiuta Date: Thu, 26 Dec 2013 22:22:00 -0800 Subject: [PATCH] Fix a typo in the working-with-the-browser docs --- docs/docs/07-working-with-the-browser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/07-working-with-the-browser.md b/docs/docs/07-working-with-the-browser.md index 7d08cf055f..393cce8a16 100644 --- a/docs/docs/07-working-with-the-browser.md +++ b/docs/docs/07-working-with-the-browser.md @@ -141,7 +141,7 @@ Although React is pretty good at abstracting browser differences, some browsers #### onScroll event on IE8 -On IE8 the `onScroll` event doesn't bubbles and IE8 doesn't have an API to define handlers to the capturing phase of an event, meaning there is no way for React to listen to these events. +On IE8 the `onScroll` event doesn't bubble and IE8 doesn't have an API to define handlers to the capturing phase of an event, meaning there is no way for React to listen to these events. Currently a handler to this event is ignored on IE8. See the [onScroll doesn't work in IE8](https://github.com/facebook/react/issues/631) GitHub issue for more information.