Commit 12f60b6b authored by Robert Knight's avatar Robert Knight

Remove an unnecessary variable

parent 1044a86b
...@@ -5,8 +5,6 @@ ...@@ -5,8 +5,6 @@
// Listen for `webviewerloaded` event to configure the viewer after its files // Listen for `webviewerloaded` event to configure the viewer after its files
// have been loaded but before it is initialized. // have been loaded but before it is initialized.
document.addEventListener('webviewerloaded', () => { document.addEventListener('webviewerloaded', () => {
const app = window.PDFViewerApplication;
// Prevent loading of default viewer PDF. // Prevent loading of default viewer PDF.
PDFViewerApplicationOptions.set('defaultUrl', ''); PDFViewerApplicationOptions.set('defaultUrl', '');
...@@ -29,7 +27,7 @@ document.addEventListener('webviewerloaded', () => { ...@@ -29,7 +27,7 @@ document.addEventListener('webviewerloaded', () => {
// //
// See https://github.com/mozilla/pdf.js/wiki/Frequently-Asked-Questions#can-i-specify-a-different-pdf-in-the-default-viewer // See https://github.com/mozilla/pdf.js/wiki/Frequently-Asked-Questions#can-i-specify-a-different-pdf-in-the-default-viewer
// and https://github.com/mozilla/pdf.js/issues/10435#issuecomment-452706770 // and https://github.com/mozilla/pdf.js/issues/10435#issuecomment-452706770
app.open({ PDFViewerApplication.open({
// Load PDF through Via to work around CORS restrictions. // Load PDF through Via to work around CORS restrictions.
url, url,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment