aboutsummaryrefslogtreecommitdiff
path: root/js/document/document-html.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-06-01 15:26:30 -0700
committerValerio Virgillito2012-06-01 15:26:30 -0700
commit4bb571a9551bba8a37bf3afd639412173d58bc71 (patch)
tree1be2a2883de37c44b471dae95b891ac8e67fc95b /js/document/document-html.js
parent8bbabd61e600e0a4aee72377c962d9147db1d8e1 (diff)
parent41e1d1f57aa60514ebeaa640e19ec4d145c33314 (diff)
downloadninja-4bb571a9551bba8a37bf3afd639412173d58bc71.tar.gz
Merge pull request #262 from joseeight/Document
Fixing webGL helper, setting up montage flag for clean up
Diffstat (limited to 'js/document/document-html.js')
-rwxr-xr-xjs/document/document-html.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/document/document-html.js b/js/document/document-html.js
index c60a12a2..b5684dc5 100755
--- a/js/document/document-html.js
+++ b/js/document/document-html.js
@@ -62,6 +62,8 @@ exports.HtmlDocument = Montage.create(Component, {
62 parentContainer: {value: document.getElementById("iframeContainer")}, //Saving reference to parent container of all views (should be changed to buckets approach 62 parentContainer: {value: document.getElementById("iframeContainer")}, //Saving reference to parent container of all views (should be changed to buckets approach
63 views: {value: {'design': DesignDocumentView.create(), 'code': null}} //TODO: Add code view logic 63 views: {value: {'design': DesignDocumentView.create(), 'code': null}} //TODO: Add code view logic
64 }); 64 });
65 //Calling the any init routines in the model
66 this.model.init();
65 //Initiliazing views and hiding 67 //Initiliazing views and hiding
66 if (this.model.views.design.initialize(this.model.parentContainer)) { 68 if (this.model.views.design.initialize(this.model.parentContainer)) {
67 //Hiding iFrame, just initiliazing 69 //Hiding iFrame, just initiliazing