diff --git a/web/app.js b/web/app.js index e28b43b694bcf..9242ee6701540 100644 --- a/web/app.js +++ b/web/app.js @@ -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")) { diff --git a/web/toolbar.js b/web/toolbar.js index f37b5d4046d7e..987bcc5aa77e5 100644 --- a/web/toolbar.js +++ b/web/toolbar.js @@ -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. diff --git a/web/viewer.js b/web/viewer.js index ff40485c37d7c..ad3e121dbe2d8 100644 --- a/web/viewer.js +++ b/web/viewer.js @@ -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(