diff options
Diffstat (limited to 'js/document/views')
-rwxr-xr-x | js/document/views/design.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/js/document/views/design.js b/js/document/views/design.js index c7aab1d7..2ccb82d1 100755 --- a/js/document/views/design.js +++ b/js/document/views/design.js | |||
@@ -184,6 +184,10 @@ exports.DesignDocumentView = Montage.create(BaseDocumentView, { | |||
184 | this._bodyFragment = null; | 184 | this._bodyFragment = null; |
185 | //Calling standard method to finish opening document | 185 | //Calling standard method to finish opening document |
186 | this.bodyContentLoaded(null); | 186 | this.bodyContentLoaded(null); |
187 | |||
188 | // TODO: Clean up this code | ||
189 | this.application.ninja.stage.documentOffsetLeft = parseInt((this.document.body.scrollWidth - this._template.size.width)/2); | ||
190 | this.application.ninja.stage.documentOffsetTop = parseInt((this.document.body.scrollHeight - this._template.size.height)/2); | ||
187 | } | 191 | } |
188 | }, | 192 | }, |
189 | //////////////////////////////////////////////////////////////////// | 193 | //////////////////////////////////////////////////////////////////// |
@@ -347,7 +351,7 @@ exports.DesignDocumentView = Montage.create(BaseDocumentView, { | |||
347 | // | 351 | // |
348 | initMontage: { | 352 | initMontage: { |
349 | value: function () { | 353 | value: function () { |
350 | // | 354 | //initWithDocument(window.document) instantiateWithOwnerAndDocument(null, window.document) |
351 | } | 355 | } |
352 | }, | 356 | }, |
353 | //////////////////////////////////////////////////////////////////// | 357 | //////////////////////////////////////////////////////////////////// |