From e39c19423a6daff70f33d268e0cccd9d33d50dc1 Mon Sep 17 00:00:00 2001 From: Jan Kassens Date: Mon, 3 Mar 2014 09:37:19 -0800 Subject: [PATCH] temporarily disable warning --- src/browser/ReactMount.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/browser/ReactMount.js b/src/browser/ReactMount.js index 1075f15cb6..ccc993f5a1 100644 --- a/src/browser/ReactMount.js +++ b/src/browser/ReactMount.js @@ -484,10 +484,12 @@ var ReactMount = { // warning is when the container is empty. rootElementsByReactRootID[reactRootID] = containerChild; } else { - console.warn( - 'ReactMount: Root element has been removed from its original ' + - 'container. New container:', rootElement.parentNode - ); + // Disabled for now until #3436441 is fixed. + // + // console.warn( + // 'ReactMount: Root element has been removed from its original ' + + // 'container. New container:', rootElement.parentNode + // ); } } }