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

Merge pull request #4103 from yurydelendik/issue3977

Introduces disableObjectCreateURL
This commit is contained in:
Brendan Dahl 2014-01-16 10:51:22 -08:00
commit 3b829f4a45
4 changed files with 23 additions and 7 deletions

View file

@ -231,6 +231,7 @@ var WorkerMessageHandler = PDFJS.WorkerMessageHandler = {
PDFJS.maxImageSize = data.maxImageSize === undefined ?
-1 : data.maxImageSize;
PDFJS.disableFontFace = data.disableFontFace;
PDFJS.disableCreateObjectURL = data.disableCreateObjectURL;
PDFJS.verbosity = data.verbosity;
getPdfManager(data).then(function pdfManagerReady() {