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) => {
|
SystemJS.import('pdfjs/core/worker').then((worker) => {
|
||||||
fakeWorkerFilesLoadedCapability.resolve(worker.WorkerMessageHandler);
|
fakeWorkerFilesLoadedCapability.resolve(worker.WorkerMessageHandler);
|
||||||
}).catch(fakeWorkerFilesLoadedCapability.reject);
|
}).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 {
|
} else {
|
||||||
fakeWorkerFilesLoadedCapability.reject(new Error(
|
fakeWorkerFilesLoadedCapability.reject(
|
||||||
'SystemJS or CommonJS must be used to load fake worker.'));
|
new Error('SystemJS must be used to load fake worker.'));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
const loader = fakeWorkerFilesLoader || function() {
|
const loader = fakeWorkerFilesLoader || function() {
|
||||||
|
10
web/app.js
10
web/app.js
@ -1532,16 +1532,8 @@ function loadFakeWorker() {
|
|||||||
window.pdfjsWorker = worker;
|
window.pdfjsWorker = worker;
|
||||||
resolve();
|
resolve();
|
||||||
}).catch(reject);
|
}).catch(reject);
|
||||||
} else if (typeof require === 'function') {
|
|
||||||
try {
|
|
||||||
window.pdfjsWorker = require('../src/core/worker.js');
|
|
||||||
resolve();
|
|
||||||
} catch (ex) {
|
|
||||||
reject(ex);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
reject(new Error(
|
reject(new Error('SystemJS must be used to load fake worker.'));
|
||||||
'SystemJS or CommonJS must be used to load fake worker.'));
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -23,15 +23,8 @@ function getDefaultPreferences() {
|
|||||||
defaultPreferences = new Promise(function(resolve, reject) {
|
defaultPreferences = new Promise(function(resolve, reject) {
|
||||||
if (typeof SystemJS === 'object') {
|
if (typeof SystemJS === 'object') {
|
||||||
SystemJS.import('./app_options').then(resolve, reject);
|
SystemJS.import('./app_options').then(resolve, reject);
|
||||||
} else if (typeof require === 'function') {
|
|
||||||
try {
|
|
||||||
resolve(require('./app_options.js'));
|
|
||||||
} catch (ex) {
|
|
||||||
reject(ex);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
reject(new Error(
|
reject(new Error('SystemJS must be used to load AppOptions.'));
|
||||||
'SystemJS or CommonJS must be used to load AppOptions.'));
|
|
||||||
}
|
}
|
||||||
}).then(function({ AppOptions, OptionKind, }) {
|
}).then(function({ AppOptions, OptionKind, }) {
|
||||||
return AppOptions.getAll(OptionKind.PREFERENCE);
|
return AppOptions.getAll(OptionKind.PREFERENCE);
|
||||||
|
Loading…
Reference in New Issue
Block a user