From 804b109ba6fe22f8c8fbd9a665152b98c19f9a41 Mon Sep 17 00:00:00 2001 From: laiso Date: Sat, 11 Jul 2015 01:00:21 +0900 Subject: [PATCH] Remove the unexpected character in ReactEventListener --- src/renderers/dom/client/ReactEventListener.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderers/dom/client/ReactEventListener.js b/src/renderers/dom/client/ReactEventListener.js index 2f2e721939..1cec1ff955 100644 --- a/src/renderers/dom/client/ReactEventListener.js +++ b/src/renderers/dom/client/ReactEventListener.js @@ -126,7 +126,7 @@ function handleTopLevelWithPath(bookKeeping) { ); // Jump to the root of this React render tree - while (currentPathElementID !== newRootID) { + while (currentPathElementID !== newRootID) { i++; currentPathElement = path[i]; currentPathElementID = ReactMount.getID(currentPathElement);