mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 21:59:00 +02:00
Merge pull request #12200 from overleaf/ii-pdf-view-moves-to-the-left
[web] Make pdf view consistent when recompiling GitOrigin-RevId: 1c76a1c8e0b8b024c7d0d033f92ff900e70909a6
This commit is contained in:
@@ -213,9 +213,13 @@ export default class PDFJSWrapper {
|
||||
destArray,
|
||||
})
|
||||
|
||||
// scroll the page down by an extra few pixels to account for the pdf.js viewer page border
|
||||
// scroll the page left and down by an extra few pixels to account for the pdf.js viewer page border
|
||||
const pageIndex = this.viewer.currentPageNumber - 1
|
||||
const pageView = this.viewer.getPageView(pageIndex)
|
||||
const offset = parseFloat(getComputedStyle(pageView.div).borderWidth)
|
||||
this.viewer.container.scrollBy({
|
||||
top: -9,
|
||||
top: -offset,
|
||||
left: -offset,
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user