aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/component.js
diff options
context:
space:
mode:
authorKruti Shah2012-06-20 15:12:48 -0700
committerKruti Shah2012-06-20 15:12:48 -0700
commit1fe1202ba87d6de9b0f0d8efee78f955c5350210 (patch)
tree26ff4c6c5a94accfd5801f124244d3eef152a5c7 /node_modules/montage/ui/component.js
parent1ce4bd7033a413c7697888e5712f278219d6d095 (diff)
parent782b66c783df4a9c36fa240cc77900e69b9130cf (diff)
downloadninja-1fe1202ba87d6de9b0f0d8efee78f955c5350210.tar.gz
Merge branch 'refs/heads/TimelineUberJD' into Timeline-local-kruti
Diffstat (limited to 'node_modules/montage/ui/component.js')
-rwxr-xr-xnode_modules/montage/ui/component.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/node_modules/montage/ui/component.js b/node_modules/montage/ui/component.js
index 30119815..09b91bed 100755
--- a/node_modules/montage/ui/component.js
+++ b/node_modules/montage/ui/component.js
@@ -1795,7 +1795,7 @@ var rootComponent = Montage.create(Component, /** @lends module:montage/ui/compo
1795 } 1795 }
1796 if (drawLogger.isDebug) { 1796 if (drawLogger.isDebug) {
1797 // Detect any DOM modification since the previous draw 1797 // Detect any DOM modification since the previous draw
1798 var newSource = document.getElementsByTagName('html')[0].innerHTML; 1798 var newSource = document.documentElement.innerHTML;
1799 if (self._oldSource && newSource !== self._oldSource) { 1799 if (self._oldSource && newSource !== self._oldSource) {
1800 var warning = ["DOM modified outside of the draw loop"]; 1800 var warning = ["DOM modified outside of the draw loop"];
1801 var out = self._diff(self._oldSource.split("\n"), newSource.split("\n")); 1801 var out = self._diff(self._oldSource.split("\n"), newSource.split("\n"));
@@ -1820,7 +1820,7 @@ var rootComponent = Montage.create(Component, /** @lends module:montage/ui/compo
1820 1820
1821 if (drawLogger.isDebug) { 1821 if (drawLogger.isDebug) {
1822 console.groupEnd(); 1822 console.groupEnd();
1823 self._oldSource = document.getElementsByTagName('html')[0].innerHTML; 1823 self._oldSource = document.documentElement.innerHTML;
1824 } 1824 }
1825 self._frameTime = null; 1825 self._frameTime = null;
1826 if (self._scheduleComposerRequest) { 1826 if (self._scheduleComposerRequest) {
@@ -1987,7 +1987,7 @@ var rootComponent = Montage.create(Component, /** @lends module:montage/ui/compo
1987 } 1987 }
1988}); 1988});
1989 1989
1990rootComponent.init().element = document; 1990rootComponent.init();
1991//if(window.parent && window.parent.jasmine) { 1991//if(window.parent && window.parent.jasmine) {
1992exports.__root__ = rootComponent; 1992exports.__root__ = rootComponent;
1993//} 1993//}