Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_pdfviewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/workersrc.js')
-rw-r--r--src/workersrc.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/workersrc.js b/src/workersrc.js
index aedf21c..98fda00 100644
--- a/src/workersrc.js
+++ b/src/workersrc.js
@@ -38,6 +38,7 @@ redirectIfNotIframe()
// "PDFViewerApplication" and "PDFViewerApplicationOptions" are globally set and
// before "PDFViewerApplication.initialize" is executed.
function initializeCustomPDFViewerApplication() {
+
// Preferences override options, so they must be disabled for
// "externalLinkTarget" to take effect.
PDFViewerApplicationOptions.set('disablePreferences', true)
@@ -46,6 +47,8 @@ function initializeCustomPDFViewerApplication() {
PDFViewerApplicationOptions.set('workerSrc', document.getElementsByTagName('head')[0].getAttribute('data-workersrc'))
PDFViewerApplicationOptions.set('cMapUrl', document.getElementsByTagName('head')[0].getAttribute('data-cmapurl'))
+ console.debug('Initialized files_pdfviewer', PDFViewerApplicationOptions.getAll())
+
// The download has to be forced to use the URL of the file; by default
// "PDFViewerApplication.download" uses a blob, but this causes a CSP error
// (at least, in Firefox) when trying to download it.
@@ -126,4 +129,4 @@ function initializeCustomPDFViewerApplication() {
}
}
-document.addEventListener('webviewerloaded', initializeCustomPDFViewerApplication, true)
+document.addEventListener('DOMContentLoaded', initializeCustomPDFViewerApplication, true)