Merge pull request #1741 from spicyj/mount-unused

Remove unused properties from ReactMount
This commit is contained in:
Paul O’Shannessy
2014-06-25 21:24:42 -07:00
-9
View File
@@ -212,15 +212,6 @@ function findDeepestCachedAncestor(targetID) {
* Inside of `container`, the first element rendered is the "reactRoot".
*/
var ReactMount = {
/** Time spent generating markup. */
totalInstantiationTime: 0,
/** Time spent inserting markup into the DOM. */
totalInjectionTime: 0,
/** Whether support for touch events should be initialized. */
useTouchEvents: false,
/** Exposed for debugging purposes **/
_instancesByReactRootID: instancesByReactRootID,