diff options
author | Valerio Virgillito | 2012-05-15 14:50:02 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-15 14:50:02 -0700 |
commit | cdf00ba3e82c5064dd02ffa27f3069b4dd2e04c2 (patch) | |
tree | 222d7939f0ac4863b13fae288aa5c0a8da862749 /js/stage/stage.reel | |
parent | 1d72a82a4c27a288e900eab99818222159ef8e23 (diff) | |
parent | d8c7c8959f330c3a153aac65197cce54172275fc (diff) | |
download | ninja-cdf00ba3e82c5064dd02ffa27f3069b4dd2e04c2.tar.gz |
Merge pull request #233 from mqg734/Dom-Architecture
Fixing scrollbar syncing, including pan tool, for banner templates.
Diffstat (limited to 'js/stage/stage.reel')
-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 | ||