aboutsummaryrefslogtreecommitdiff
path: root/js/document/document-html.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-06-06 14:31:33 -0700
committerValerio Virgillito2012-06-06 14:31:33 -0700
commite14ce28b5c8858af75fbf2003c8f1b854daa7e35 (patch)
treeeaeb781511eafe2b1893db121b464151d6b361f4 /js/document/document-html.js
parent9b2aacd1ced60edb9cb604e9983f7c36fd409e0b (diff)
parent98d8cf7fdc1b14a6ac4eaa54f9086a558f3a60cb (diff)
downloadninja-e14ce28b5c8858af75fbf2003c8f1b854daa7e35.tar.gz
Merge pull request #277 from joseeight/Document
Fixing referencing, also clean up
Diffstat (limited to 'js/document/document-html.js')
-rwxr-xr-xjs/document/document-html.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/document/document-html.js b/js/document/document-html.js
index 33a41a8e..c9acd2e0 100755
--- a/js/document/document-html.js
+++ b/js/document/document-html.js
@@ -68,6 +68,8 @@ exports.HtmlDocument = Montage.create(Component, {
68 if (this.model.views.design.initialize(this.model.parentContainer)) { 68 if (this.model.views.design.initialize(this.model.parentContainer)) {
69 //Hiding iFrame, just initiliazing 69 //Hiding iFrame, just initiliazing
70 this.model.views.design.hide(); 70 this.model.views.design.hide();
71 //Setting the iFrame property for reference in helper class
72 this.model.webGlHelper.iframe = this.model.views.design.iframe;
71 } else { 73 } else {
72 //ERROR: Design View not initialized 74 //ERROR: Design View not initialized
73 } 75 }
@@ -82,7 +84,7 @@ exports.HtmlDocument = Montage.create(Component, {
82 this.model.views.design.iframe.style.opacity = 0; 84 this.model.views.design.iframe.style.opacity = 0;
83 this.model.views.design.content = this.model.file.content; 85 this.model.views.design.content = this.model.file.content;
84 //TODO: Improve reference (probably through binding values) 86 //TODO: Improve reference (probably through binding values)
85 this.model.views.design.model = this.model; 87 this.model.views.design._webGlHelper = this.model.webGlHelper;
86 //Rendering design view, using observers to know when template is ready 88 //Rendering design view, using observers to know when template is ready
87 this.model.views.design.render(function () { 89 this.model.views.design.render(function () {
88 //Adding observer to know when template is ready 90 //Adding observer to know when template is ready