diff options
Diffstat (limited to 'js/document/html-document.js')
-rwxr-xr-x | js/document/html-document.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/js/document/html-document.js b/js/document/html-document.js index 0c8695fb..a5483f40 100755 --- a/js/document/html-document.js +++ b/js/document/html-document.js | |||
@@ -14,7 +14,7 @@ var Montage = require("montage/core/core").Montage, | |||
14 | exports.HTMLDocument = Montage.create(TextDocument, { | 14 | exports.HTMLDocument = Montage.create(TextDocument, { |
15 | 15 | ||
16 | _selectionExclude: { value: null, enumerable: false }, | 16 | _selectionExclude: { value: null, enumerable: false }, |
17 | _htmlTemplateUrl: { value: "user-document-templates/montage-application-cloud/index.html", enumerable: false}, | 17 | _htmlTemplateUrl: { value: "js/document/templates/montage-html/index.html", enumerable: false}, |
18 | _iframe: { value: null, enumerable: false }, | 18 | _iframe: { value: null, enumerable: false }, |
19 | _server: { value: null, enumerable: false }, | 19 | _server: { value: null, enumerable: false }, |
20 | _templateDocument: { value: null, enumerable: false }, | 20 | _templateDocument: { value: null, enumerable: false }, |
@@ -235,6 +235,7 @@ exports.HTMLDocument = Montage.create(TextDocument, { | |||
235 | // | 235 | // |
236 | initialize: { | 236 | initialize: { |
237 | value: function(file, uuid, iframe, callback) { | 237 | value: function(file, uuid, iframe, callback) { |
238 | //console.log('allow'); | ||
238 | // | 239 | // |
239 | this._userDocument = file; | 240 | this._userDocument = file; |
240 | // | 241 | // |
@@ -359,6 +360,8 @@ exports.HTMLDocument = Montage.create(TextDocument, { | |||
359 | // | 360 | // |
360 | handleEvent: { | 361 | handleEvent: { |
361 | value: function(event){ | 362 | value: function(event){ |
363 | //console.log('end'); | ||
364 | //console.log('file content start'); | ||
362 | //TODO: Clean up, using for prototyping save | 365 | //TODO: Clean up, using for prototyping save |
363 | this._templateDocument = {}; | 366 | this._templateDocument = {}; |
364 | this._templateDocument.head = this.iframe.contentWindow.document.getElementById("userHead");; | 367 | this._templateDocument.head = this.iframe.contentWindow.document.getElementById("userHead");; |
@@ -389,6 +392,8 @@ exports.HTMLDocument = Montage.create(TextDocument, { | |||
389 | this._stylesheets = this._document.styleSheets; // Entire stlyesheets array | 392 | this._stylesheets = this._document.styleSheets; // Entire stlyesheets array |
390 | 393 | ||
391 | this.callback(this); | 394 | this.callback(this); |
395 | |||
396 | //console.log('file content end'); | ||
392 | } | 397 | } |
393 | }.bind(this), 50); | 398 | }.bind(this), 50); |
394 | 399 | ||
@@ -440,7 +445,9 @@ exports.HTMLDocument = Montage.create(TextDocument, { | |||
440 | } | 445 | } |
441 | 446 | ||
442 | // Remving this callback and using the callback from the css load | 447 | // Remving this callback and using the callback from the css load |
443 | // this.callback(this); | 448 | //this.callback(this); |
449 | |||
450 | |||
444 | 451 | ||
445 | } | 452 | } |
446 | }, | 453 | }, |