Merge pull request #11294 from Snuffleupagus/rm-non-PRODUCTION-require
Remove some unused `require` statements, used when loading fake workers, in non-`PRODUCTION` mode
This commit is contained in:
commit
c807637f40
@ -1569,16 +1569,9 @@ const PDFWorker = (function PDFWorkerClosure() {
|
||||
SystemJS.import('pdfjs/core/worker').then((worker) => {
|
||||
fakeWorkerFilesLoadedCapability.resolve(worker.WorkerMessageHandler);
|
||||
}).catch(fakeWorkerFilesLoadedCapability.reject);
|
||||
} else if (typeof require === 'function') {
|
||||
try {
|
||||
const worker = require('../core/worker.js');
|
||||
fakeWorkerFilesLoadedCapability.resolve(worker.WorkerMessageHandler);
|
||||
} catch (ex) {
|
||||
fakeWorkerFilesLoadedCapability.reject(ex);
|
||||
}
|
||||
} else {
|
||||
fakeWorkerFilesLoadedCapability.reject(new Error(
|
||||
'SystemJS or CommonJS must be used to load fake worker.'));
|
||||
fakeWorkerFilesLoadedCapability.reject(
|
||||
new Error('SystemJS must be used to load fake worker.'));
|
||||
}
|
||||
} else {
|
||||
const loader = fakeWorkerFilesLoader || function() {
|
||||
|
10
web/app.js
10
web/app.js
@ -1532,16 +1532,8 @@ function loadFakeWorker() {
|
||||
window.pdfjsWorker = worker;
|
||||
resolve();
|
||||
}).catch(reject);
|
||||
} else if (typeof require === 'function') {
|
||||
try {
|
||||
window.pdfjsWorker = require('../src/core/worker.js');
|
||||
resolve();
|
||||
} catch (ex) {
|
||||
reject(ex);
|
||||
}
|
||||
} else {
|
||||
reject(new Error(
|
||||
'SystemJS or CommonJS must be used to load fake worker.'));
|
||||
reject(new Error('SystemJS must be used to load fake worker.'));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -23,15 +23,8 @@ function getDefaultPreferences() {
|
||||
defaultPreferences = new Promise(function(resolve, reject) {
|
||||
if (typeof SystemJS === 'object') {
|
||||
SystemJS.import('./app_options').then(resolve, reject);
|
||||
} else if (typeof require === 'function') {
|
||||
try {
|
||||
resolve(require('./app_options.js'));
|
||||
} catch (ex) {
|
||||
reject(ex);
|
||||
}
|
||||
} else {
|
||||
reject(new Error(
|
||||
'SystemJS or CommonJS must be used to load AppOptions.'));
|
||||
reject(new Error('SystemJS must be used to load AppOptions.'));
|
||||
}
|
||||
}).then(function({ AppOptions, OptionKind, }) {
|
||||
return AppOptions.getAll(OptionKind.PREFERENCE);
|
||||
|
Loading…
Reference in New Issue
Block a user