|
|
@ -160,6 +160,15 @@ PDFJS.verbosity = (PDFJS.verbosity === undefined ? |
|
|
|
PDFJS.maxCanvasPixels = (PDFJS.maxCanvasPixels === undefined ? |
|
|
|
PDFJS.maxCanvasPixels = (PDFJS.maxCanvasPixels === undefined ? |
|
|
|
16777216 : PDFJS.maxCanvasPixels); |
|
|
|
16777216 : PDFJS.maxCanvasPixels); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Opens external links in a new window if enabled. The default behavior opens |
|
|
|
|
|
|
|
* external links in the PDF.js window. |
|
|
|
|
|
|
|
* @var {boolean} |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
PDFJS.openExternalLinksInNewWindow = ( |
|
|
|
|
|
|
|
PDFJS.openExternalLinksInNewWindow === undefined ? |
|
|
|
|
|
|
|
false : PDFJS.openExternalLinksInNewWindow); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Document initialization / loading parameters object. |
|
|
|
* Document initialization / loading parameters object. |
|
|
|
* |
|
|
|
* |
|
|
|