Skip to content

Commit

Permalink
Merge pull request #18510 from timvandermeij/findbar-button
Browse files Browse the repository at this point in the history
Improve how the findbar's toggle button is referenced in the viewer code
  • Loading branch information
timvandermeij committed Jul 29, 2024
2 parents 45e42cc + f430a6b commit 7199c96
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion web/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ const PDFViewerApplication = {
}

if (this.supportsIntegratedFind) {
appConfig.toolbar?.viewFind?.classList.add("hidden");
appConfig.findBar?.toggleButton?.classList.add("hidden");
}

if (typeof PDFJSDev === "undefined" || PDFJSDev.test("GENERIC")) {
Expand Down
1 change: 0 additions & 1 deletion web/toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ import {
* @property {HTMLButtonElement} next - Button to go to the next page.
* @property {HTMLButtonElement} zoomIn - Button to zoom in the pages.
* @property {HTMLButtonElement} zoomOut - Button to zoom out the pages.
* @property {HTMLButtonElement} viewFind - Button to open find bar.
* @property {HTMLButtonElement} editorFreeTextButton - Button to switch to
* FreeText editing.
* @property {HTMLButtonElement} download - Button to download the document.
Expand Down
1 change: 0 additions & 1 deletion web/viewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ function getViewerConfiguration() {
next: document.getElementById("next"),
zoomIn: document.getElementById("zoomIn"),
zoomOut: document.getElementById("zoomOut"),
viewFind: document.getElementById("viewFind"),
print: document.getElementById("print"),
editorFreeTextButton: document.getElementById("editorFreeText"),
editorFreeTextParamsToolbar: document.getElementById(
Expand Down

0 comments on commit 7199c96

Please sign in to comment.