diff options
Diffstat (limited to 'js/io/document/html-document.js')
-rwxr-xr-x | js/io/document/html-document.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/js/io/document/html-document.js b/js/io/document/html-document.js index 99bf4576..dfd8566a 100755 --- a/js/io/document/html-document.js +++ b/js/io/document/html-document.js | |||
@@ -471,9 +471,12 @@ var HTMLDocument = exports.HTMLDocument = Montage.create(baseDocumentModule.Base | |||
471 | save: { | 471 | save: { |
472 | enumerable: false, | 472 | enumerable: false, |
473 | value: function () { | 473 | value: function () { |
474 | //console.log(this._styles, this._stylesheets); | ||
475 | //TODO: Add code view logic and also styles for HTML | 474 | //TODO: Add code view logic and also styles for HTML |
476 | return {mode: 'html', document: this._userDocument, style: this._styles, head: this._templateDocument.head.innerHTML, body: this._templateDocument.body.innerHTML}; | 475 | if (this.currentView === 'design') { |
476 | return {mode: 'html', document: this._userDocument, style: this._styles, head: this._templateDocument.head.innerHTML, body: this._templateDocument.body.innerHTML}; | ||
477 | } else if(this.currentView === "code"){ | ||
478 | //TODO: Would this get call when we are in code of HTML? | ||
479 | } | ||
477 | } | 480 | } |
478 | } | 481 | } |
479 | //////////////////////////////////////////////////////////////////// | 482 | //////////////////////////////////////////////////////////////////// |