Merge pull request #3938 from brendandahl/worker-docs

Update docs on the workerSrc setting.
This commit is contained in:
Yury Delendik 2013-11-20 05:10:19 -08:00
commit 24ee86de57
2 changed files with 5 additions and 2 deletions

View File

@ -16,7 +16,8 @@
<script type="text/javascript"> <script type="text/javascript">
// Specify the main script used to create a new PDF.JS web worker. // Specify the main script used to create a new PDF.JS web worker.
// In production, change this to point to the combined `pdf.js` file. // In production, leave this undefined or change it to point to the
// combined `pdf.worker.js` file.
PDFJS.workerSrc = '../../src/worker_loader.js'; PDFJS.workerSrc = '../../src/worker_loader.js';
</script> </script>
<script type="text/javascript" src="hello.js"></script> <script type="text/javascript" src="hello.js"></script>

View File

@ -56,7 +56,9 @@ PDFJS.disableWorker = PDFJS.disableWorker === undefined ?
false : PDFJS.disableWorker; false : PDFJS.disableWorker;
/** /**
* Path and filename of the worker file. Required when the worker is enabled. * Path and filename of the worker file. Required when the worker is enabled in
* development mode. If unspecified in the production build, the worker will be
* loaded based on the location of the pdf.js file.
* @var {String} * @var {String}
*/ */
PDFJS.workerSrc = PDFJS.workerSrc === undefined ? null : PDFJS.workerSrc; PDFJS.workerSrc = PDFJS.workerSrc === undefined ? null : PDFJS.workerSrc;