mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 02:46:55 +00:00
Merge pull request #12939 from overleaf/td-history-more-update-scroll-amount
History migration: More update button scrolls next change to the centre GitOrigin-RevId: 29d41a046f7110c246a0b9c784dedf6b148ea298
This commit is contained in:
parent
27457133e4
commit
a0e3379c86
2 changed files with 6 additions and 3 deletions
|
@ -125,7 +125,10 @@ export function highlightLocations() {
|
|||
export function scrollToHighlight(view: EditorView, highlight: Highlight) {
|
||||
view.dispatch({
|
||||
effects: EditorView.scrollIntoView(
|
||||
EditorSelection.range(highlight.range.from, highlight.range.to)
|
||||
EditorSelection.range(highlight.range.from, highlight.range.to),
|
||||
{
|
||||
y: 'center',
|
||||
}
|
||||
),
|
||||
})
|
||||
}
|
||||
|
|
|
@ -203,8 +203,8 @@ End
|
|||
// Click the "More updates above" button, which should scroll the editor up
|
||||
// but not quite to the top, and check the new state
|
||||
cy.get('.previous-highlight-button').first().click()
|
||||
cy.get('@scroller').invoke('scrollTop').should('not.equal', 0)
|
||||
cy.get('.previous-highlight-button').should('have.length', 1)
|
||||
cy.get('@scroller').invoke('scrollTop').should('equal', 0)
|
||||
cy.get('.previous-highlight-button').should('not.exist')
|
||||
cy.get('.next-highlight-button').should('have.length', 1)
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue