From 0491d30e7c1bf4438248fd6a5ef3f970a7c4070f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Tue, 18 Mar 2014 22:03:25 -0700 Subject: [PATCH] re-enable moved root warning --- src/browser/ui/ReactMount.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/browser/ui/ReactMount.js b/src/browser/ui/ReactMount.js index 1855096a52..90899383ad 100644 --- a/src/browser/ui/ReactMount.js +++ b/src/browser/ui/ReactMount.js @@ -490,12 +490,10 @@ var ReactMount = { // warning is when the container is empty. rootElementsByReactRootID[reactRootID] = containerChild; } else { - // Disabled for now until #3436441 is fixed. - // - // console.warn( - // 'ReactMount: Root element has been removed from its original ' + - // 'container. New container:', rootElement.parentNode - // ); + console.warn( + 'ReactMount: Root element has been removed from its original ' + + 'container. New container:', rootElement.parentNode + ); } } }