Fix issue with initial scale when opening a new file and another one is already loaded
This commit is contained in:
parent
8d386a5368
commit
8170d67a6b
@ -1030,6 +1030,11 @@ var PDFView = {
|
|||||||
// updated if the zoom level stayed the same.
|
// updated if the zoom level stayed the same.
|
||||||
this.currentScale = 0;
|
this.currentScale = 0;
|
||||||
this.currentScaleValue = null;
|
this.currentScaleValue = null;
|
||||||
|
// When opening a new file (when one is already loaded in the viewer):
|
||||||
|
// Reset 'currentPageNumber', since otherwise the page's scale will be wrong
|
||||||
|
// if 'currentPageNumber' is larger than the number of pages in the file.
|
||||||
|
document.getElementById('pageNumber').value = currentPageNumber = 1;
|
||||||
|
|
||||||
if (PDFHistory.initialDestination) {
|
if (PDFHistory.initialDestination) {
|
||||||
this.navigateTo(PDFHistory.initialDestination);
|
this.navigateTo(PDFHistory.initialDestination);
|
||||||
PDFHistory.initialDestination = null;
|
PDFHistory.initialDestination = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user