From a828887e02e1bcd5a2503955605da1aebac77bf3 Mon Sep 17 00:00:00 2001 From: Godfrey Chan Date: Fri, 6 Sep 2019 16:55:57 -0700 Subject: [PATCH 1/2] [FEATURE] Introduce debug render tree 1. Before loading Ember, set `ENV._DEBUG_RENDER_TREE = true;` This controls whether to perform extra bookkeeping needed to make the `captureRenderTree` API work. This has to be set before the ember JavaScript code is evaluated. This is usually done by setting one of these... ``` window.EmberENV = { _DEBUG_RENDER_TREE: true }; ``` ``` window.ENV = { _DEBUG_RENDER_TREE: true }; ``` ...before the "vendor" `