diff options
author | Valerio Virgillito | 2012-05-15 16:05:41 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-15 16:05:41 -0700 |
commit | 17bbf73c73eadf018b03bb21a7da571901b5a389 (patch) | |
tree | bd478adcc531685d874ec186cbb20ea277f55c61 /js/stage/stage.reel/stage.js | |
parent | 3be58f9391cc2ef7f1d27ec69c98ea600cb93a22 (diff) | |
parent | 1c91748d8517656c0982c6fc194cd0010d02fb63 (diff) | |
download | ninja-17bbf73c73eadf018b03bb21a7da571901b5a389.tar.gz |
Merge branch 'dom-architecture' of github.com:Motorola-Mobility/ninja-internal into dom-architecture
Diffstat (limited to 'js/stage/stage.reel/stage.js')
-rwxr-xr-x | js/stage/stage.reel/stage.js | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/js/stage/stage.reel/stage.js b/js/stage/stage.reel/stage.js index dc6444ff..e66c5b7b 100755 --- a/js/stage/stage.reel/stage.js +++ b/js/stage/stage.reel/stage.js | |||
@@ -464,8 +464,8 @@ exports.Stage = Montage.create(Component, { | |||
464 | this.userContentLeft = this._documentOffsetLeft - this._scrollLeft + this._userContentBorder; | 464 | this.userContentLeft = this._documentOffsetLeft - this._scrollLeft + this._userContentBorder; |
465 | this.userContentTop = this._documentOffsetTop - this._scrollTop + this._userContentBorder; | 465 | this.userContentTop = this._documentOffsetTop - this._scrollTop + this._userContentBorder; |
466 | } else { | 466 | } else { |
467 | this._scrollLeft = this.application.ninja.currentDocument.documentRoot.scrollLeft; | 467 | this._scrollLeft = this.application.ninja.currentDocument.model.views.design.document.body.scrollLeft; |
468 | this._scrollTop = this.application.ninja.currentDocument.documentRoot.scrollTop; | 468 | this._scrollTop = this.application.ninja.currentDocument.model.views.design.document.body.scrollTop; |
469 | 469 | ||
470 | this.userContentLeft = -this._scrollLeft; | 470 | this.userContentLeft = -this._scrollLeft; |
471 | this.userContentTop = -this._scrollTop; | 471 | this.userContentTop = -this._scrollTop; |
@@ -512,11 +512,16 @@ exports.Stage = Montage.create(Component, { | |||
512 | */ | 512 | */ |
513 | centerStage: { | 513 | centerStage: { |
514 | value: function() { | 514 | value: function() { |
515 | this._iframeContainer.scrollLeft = this._documentOffsetLeft - (this._iframeContainer.offsetWidth - this._documentRoot.parentNode.offsetWidth)/2; | 515 | if(this.application.ninja.currentDocument.documentRoot.id === "UserContent") { |
516 | this._iframeContainer.scrollTop = this._documentOffsetTop - (this._iframeContainer.offsetHeight - this._documentRoot.parentNode.offsetHeight)/2; | 516 | this._iframeContainer.scrollLeft = this._documentOffsetLeft - (this._iframeContainer.offsetWidth - this._documentRoot.parentNode.offsetWidth)/2; |
517 | this._iframeContainer.scrollTop = this._documentOffsetTop - (this._iframeContainer.offsetHeight - this._documentRoot.parentNode.offsetHeight)/2; | ||
517 | 518 | ||
518 | this._scrollLeft = this._iframeContainer.scrollLeft; | 519 | this._scrollLeft = this._iframeContainer.scrollLeft; |
519 | this._scrollTop = this._iframeContainer.scrollTop; | 520 | this._scrollTop = this._iframeContainer.scrollTop; |
521 | } else { | ||
522 | this._scrollLeft = this._userContentLeft = this.application.ninja.currentDocument.model.views.design.document.body.scrollLeft = 0; | ||
523 | this._scrollTop = this._userContentTop = this.application.ninja.currentDocument.model.views.design.document.body.scrollTop = 0; | ||
524 | } | ||
520 | } | 525 | } |
521 | }, | 526 | }, |
522 | 527 | ||