This repository was archived by the owner on Dec 16, 2022. It is now read-only.
Issue #37 : On editing a post, scroll partial to top of preview.#220
Open
Issue #37 : On editing a post, scroll partial to top of preview.#220
Conversation
added 2 commits
August 16, 2016 19:39
Editing a post field will trigger a refresh of its partial. In the refresh() method, define and call scrollPartialToTopOfPage. Some themes have a margin-top of the #page element, like 2016. And this scrolling would hide part of the partial. So also calculate the offsetTop of #page, to prevent this. If this isn't a concern, this commit could be much simpler.
Contributor
|
@kienstra Yeah, there is a much simpler approach you can take here. Namely Something to bear in mind is whether or not these methods trigger |
Contributor
|
@kienstra also, instead of adding this to the preparePlacement: function( placement ) {
var partial = this;
// @todo placement.container[0].scrollIntoViewIfNeeded(); ...
return api.selectiveRefresh.Partial.prototype.preparePlacement.call( partial, placement );
} |
Author
|
Thanks, @westonruter. You raise good points here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Request For Review
Hi @westonruter,
Could you please review this pull request for Issue #37?
Editing a post field already triggers a refresh of its partial.
So in the
refresh()method, define and callscrollPartialToTopOfPage.Some themes have a
margin-topof the#pageelement, like Twenty Sixteen.And scrolling would hide part of the partial (see screenshot below).
So calculate the
offsetTopof#page, to prevent this.If this isn't a concern, this commit could be less verbose.