diff options
-rwxr-xr-x | js/document/document-html.js | 2 | ||||
-rwxr-xr-x | js/document/views/design.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/js/document/document-html.js b/js/document/document-html.js index 157d7a0e..c60a12a2 100755 --- a/js/document/document-html.js +++ b/js/document/document-html.js | |||
@@ -83,8 +83,6 @@ exports.HtmlDocument = Montage.create(Component, { | |||
83 | this.model.views.design.model = this.model; | 83 | this.model.views.design.model = this.model; |
84 | //Rendering design view, using observers to know when template is ready | 84 | //Rendering design view, using observers to know when template is ready |
85 | this.model.views.design.render(function () { | 85 | this.model.views.design.render(function () { |
86 | //TODO: Why is this needed? | ||
87 | this.model.views.design._liveNodeList = this.documentRoot.getElementsByTagName('*'); | ||
88 | //Adding observer to know when template is ready | 86 | //Adding observer to know when template is ready |
89 | this._observer = new WebKitMutationObserver(this.handleTemplateReady.bind(this)); | 87 | this._observer = new WebKitMutationObserver(this.handleTemplateReady.bind(this)); |
90 | this._observer.observe(this.model.views.design.document.head, {childList: true}); | 88 | this._observer.observe(this.model.views.design.document.head, {childList: true}); |
diff --git a/js/document/views/design.js b/js/document/views/design.js index 06708957..d772aa86 100755 --- a/js/document/views/design.js +++ b/js/document/views/design.js | |||
@@ -286,6 +286,8 @@ exports.DesignDocumentView = Montage.create(BaseDocumentView, { | |||
286 | } else { | 286 | } else { |
287 | this.model.documentRoot = this.document.body; | 287 | this.model.documentRoot = this.document.body; |
288 | } | 288 | } |
289 | //Storing node list for reference (might need to store in the model) | ||
290 | this._liveNodeList = this.model.documentRoot.getElementsByTagName('*'); | ||
289 | //Initiliazing document model | 291 | //Initiliazing document model |
290 | document.application.njUtils.makeElementModel(this.model.documentRoot, "Body", "body"); | 292 | document.application.njUtils.makeElementModel(this.model.documentRoot, "Body", "body"); |
291 | //Makign callback if specified | 293 | //Makign callback if specified |