Apply the current zoom level value to each page in Presentation Mode
This commit is contained in:
parent
fa03a777b6
commit
f35e777d81
2 changed files with 3 additions and 2 deletions
|
@ -397,8 +397,8 @@ var PDFView = {
|
|||
},
|
||||
|
||||
get isHorizontalScrollbarEnabled() {
|
||||
var div = document.getElementById('viewerContainer');
|
||||
return div.scrollWidth > div.clientWidth;
|
||||
return (PresentationMode.active ? false :
|
||||
(this.container.scrollWidth > this.container.clientWidth));
|
||||
},
|
||||
|
||||
initPassiveLoading: function pdfViewInitPassiveLoading() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue