1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 01:58:06 +02:00

Make worker support work again after file split. Add PDFJS_WORKER_DIR/PDFJS_WORKER_FILE to specify where to load files if worker support is enabled

This commit is contained in:
Julian Viereck 2011-10-28 14:32:36 +02:00
parent 21a6467b23
commit 1e6d1f9922
8 changed files with 91 additions and 46 deletions

View file

@ -174,10 +174,9 @@ var workerConsole = {
// Worker thread?
if (typeof window === 'undefined') {
globalScope.console = workerConsole;
this.console = workerConsole;
// Listen for messages from the main thread.
var handler = new MessageHandler('worker_processor', globalScope);
var handler = new MessageHandler('worker_processor', this);
WorkerProcessorHandler.setup(handler);
}