Merge pull request #15835 from Snuffleupagus/viewer-safe-element-access
Protect a few additional DOM element accesses in the viewer (PR 15831 follow-up)
This commit is contained in:
commit
b518d93b45
24
web/app.js
24
web/app.js
@ -532,7 +532,7 @@ const PDFViewerApplication = {
|
||||
pdfLinkService.setHistory(this.pdfHistory);
|
||||
}
|
||||
|
||||
if (appConfig.findBar && !this.supportsIntegratedFind) {
|
||||
if (!this.supportsIntegratedFind && appConfig.findBar) {
|
||||
this.findBar = new PDFFindBar(appConfig.findBar, eventBus, this.l10n);
|
||||
}
|
||||
|
||||
@ -543,11 +543,8 @@ const PDFViewerApplication = {
|
||||
eventBus
|
||||
);
|
||||
} else {
|
||||
for (const element of [
|
||||
document.getElementById("editorModeButtons"),
|
||||
document.getElementById("editorModeSeparator"),
|
||||
]) {
|
||||
element.hidden = true;
|
||||
for (const id of ["editorModeButtons", "editorModeSeparator"]) {
|
||||
document.getElementById(id)?.classList.add("hidden");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -792,16 +789,13 @@ const PDFViewerApplication = {
|
||||
* @private
|
||||
*/
|
||||
_hideViewBookmark() {
|
||||
const { viewBookmarkButton, presentationModeButton } =
|
||||
this.appConfig.secondaryToolbar;
|
||||
|
||||
const { secondaryToolbar } = this.appConfig;
|
||||
// URL does not reflect proper document location - hiding some buttons.
|
||||
viewBookmarkButton.hidden = true;
|
||||
secondaryToolbar?.viewBookmarkButton.classList.add("hidden");
|
||||
|
||||
// Avoid displaying multiple consecutive separators in the secondaryToolbar.
|
||||
if (presentationModeButton.hidden) {
|
||||
const element = document.getElementById("viewBookmarkSeparator");
|
||||
element.hidden = true;
|
||||
if (secondaryToolbar?.presentationModeButton.classList.contains("hidden")) {
|
||||
document.getElementById("viewBookmarkSeparator")?.classList.add("hidden");
|
||||
}
|
||||
},
|
||||
|
||||
@ -2175,8 +2169,8 @@ function webViewerInitialized() {
|
||||
appConfig.secondaryToolbar?.printButton.classList.add("hidden");
|
||||
}
|
||||
|
||||
if (appConfig.secondaryToolbar && !PDFViewerApplication.supportsFullscreen) {
|
||||
appConfig.secondaryToolbar.presentationModeButton.hidden = true;
|
||||
if (!PDFViewerApplication.supportsFullscreen) {
|
||||
appConfig.secondaryToolbar?.presentationModeButton.classList.add("hidden");
|
||||
}
|
||||
|
||||
if (PDFViewerApplication.supportsIntegratedFind) {
|
||||
|
Loading…
Reference in New Issue
Block a user