diff options
Diffstat (limited to 'js/document/html-document.js')
-rwxr-xr-x | js/document/html-document.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/js/document/html-document.js b/js/document/html-document.js index 7ab4272b..8f9d2870 100755 --- a/js/document/html-document.js +++ b/js/document/html-document.js | |||
@@ -871,7 +871,7 @@ exports.HTMLDocument = Montage.create(TextDocument, { | |||
871 | //TODO: Add logic to handle save before preview | 871 | //TODO: Add logic to handle save before preview |
872 | this.application.ninja.documentController.handleExecuteSaveAll(null); | 872 | this.application.ninja.documentController.handleExecuteSaveAll(null); |
873 | //Temp check for webGL Hack | 873 | //Temp check for webGL Hack |
874 | if (this.application.ninja.documentController.activeDocument.glData.length && this.application.ninja.documentController.activeDocument.glData.length > 0) { | 874 | if (this.application.ninja.documentController.activeDocument.glData.length && this.application.ninja.documentController.activeDocument.glData.length > 1) {//TODO: Should be 0, temp hack fix |
875 | setTimeout(function () {window.open(this.application.ninja.coreIoApi.rootUrl+this.application.ninja.documentController._activeDocument.uri.split(this.application.ninja.coreIoApi.cloudData.root)[1]);}.bind(this), 3500); | 875 | setTimeout(function () {window.open(this.application.ninja.coreIoApi.rootUrl+this.application.ninja.documentController._activeDocument.uri.split(this.application.ninja.coreIoApi.cloudData.root)[1]);}.bind(this), 3500); |
876 | } else { | 876 | } else { |
877 | window.open(this.application.ninja.coreIoApi.rootUrl+this.application.ninja.documentController._activeDocument.uri.split(this.application.ninja.coreIoApi.cloudData.root)[1]); | 877 | window.open(this.application.ninja.coreIoApi.rootUrl+this.application.ninja.documentController._activeDocument.uri.split(this.application.ninja.coreIoApi.cloudData.root)[1]); |
@@ -894,7 +894,8 @@ exports.HTMLDocument = Montage.create(TextDocument, { | |||
894 | } | 894 | } |
895 | } | 895 | } |
896 | } | 896 | } |
897 | return {mode: 'html', document: this._userDocument, mjs: this._userComponents, webgl: this.glData, styles: styles, head: this._templateDocument.head.innerHTML, body: this._templateDocument.body.innerHTML}; | 897 | //return {mode: 'html', document: this._userDocument, mjs: this._userComponents, webgl: this.glData, styles: styles, head: this._templateDocument.head.innerHTML, body: this._templateDocument.body.innerHTML}; |
898 | return {mode: 'html', document: this._userDocument, webgl: this.glData, styles: styles, head: this._templateDocument.head.innerHTML, body: this._templateDocument.body.innerHTML}; | ||
898 | } else if (this.currentView === "code"){ | 899 | } else if (this.currentView === "code"){ |
899 | //TODO: Would this get call when we are in code of HTML? | 900 | //TODO: Would this get call when we are in code of HTML? |
900 | } else { | 901 | } else { |
@@ -917,7 +918,8 @@ exports.HTMLDocument = Montage.create(TextDocument, { | |||
917 | } | 918 | } |
918 | } | 919 | } |
919 | } | 920 | } |
920 | return {mode: 'html', document: this._userDocument, mjs: this._userComponents, webgl: this.glData, css: css, head: this._templateDocument.head.innerHTML, body: this._templateDocument.body.innerHTML}; | 921 | //return {mode: 'html', document: this._userDocument, mjs: this._userComponents, webgl: this.glData, css: css, head: this._templateDocument.head.innerHTML, body: this._templateDocument.body.innerHTML}; |
922 | return {mode: 'html', document: this._userDocument, webgl: this.glData, css: css, head: this._templateDocument.head.innerHTML, body: this._templateDocument.body.innerHTML}; | ||
921 | } else if (this.currentView === "code"){ | 923 | } else if (this.currentView === "code"){ |
922 | //TODO: Would this get call when we are in code of HTML? | 924 | //TODO: Would this get call when we are in code of HTML? |
923 | } else { | 925 | } else { |