mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-09 17:55:37 +02:00
Fix searching in presentation mode in Firefox
This commit is contained in:
parent
494008eca0
commit
b118ade9ae
2 changed files with 10 additions and 7 deletions
|
@ -36,6 +36,7 @@ var TextLayerBuilder = function textLayerBuilder(options) {
|
|||
this.pageIdx = options.pageIndex;
|
||||
this.matches = [];
|
||||
this.lastScrollSource = options.lastScrollSource;
|
||||
this.isViewerInPresentationMode = options.isViewerInPresentationMode;
|
||||
|
||||
if(typeof PDFFindController === 'undefined') {
|
||||
window.PDFFindController = null;
|
||||
|
@ -304,8 +305,9 @@ var TextLayerBuilder = function textLayerBuilder(options) {
|
|||
|
||||
var isSelected = isSelectedPage && i === selectedMatchIdx;
|
||||
var highlightSuffix = (isSelected ? ' selected' : '');
|
||||
if (isSelected)
|
||||
scrollIntoView(textDivs[begin.divIdx], {top: -50});
|
||||
if (isSelected && !this.isViewerInPresentationMode) {
|
||||
scrollIntoView(textDivs[begin.divIdx], { top: -50 });
|
||||
}
|
||||
|
||||
// Match inside new div.
|
||||
if (!prevEnd || begin.divIdx !== prevEnd.divIdx) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue