|
|
@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { |
|
|
|
(typeof window !== 'undefined' ? window : this).PDFJS = {}; |
|
|
|
(typeof window !== 'undefined' ? window : this).PDFJS = {}; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
PDFJS.version = '1.1.513'; |
|
|
|
PDFJS.version = '1.1.515'; |
|
|
|
PDFJS.build = '9332da3'; |
|
|
|
PDFJS.build = '3eaeacf'; |
|
|
|
|
|
|
|
|
|
|
|
(function pdfjsWrapper() { |
|
|
|
(function pdfjsWrapper() { |
|
|
|
// Use strict in our context only - users might not want it
|
|
|
|
// Use strict in our context only - users might not want it
|
|
|
@ -18582,7 +18582,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() { |
|
|
|
if (cmap instanceof IdentityCMap) { |
|
|
|
if (cmap instanceof IdentityCMap) { |
|
|
|
return new IdentityToUnicodeMap(0, 0xFFFF); |
|
|
|
return new IdentityToUnicodeMap(0, 0xFFFF); |
|
|
|
} |
|
|
|
} |
|
|
|
var map = []; |
|
|
|
var map = new Array(cmap.length); |
|
|
|
// Convert UTF-16BE
|
|
|
|
// Convert UTF-16BE
|
|
|
|
// NOTE: cmap can be a sparse array, so use forEach instead of for(;;)
|
|
|
|
// NOTE: cmap can be a sparse array, so use forEach instead of for(;;)
|
|
|
|
// to iterate over all keys.
|
|
|
|
// to iterate over all keys.
|
|
|
@ -20195,6 +20195,10 @@ var CMap = (function CMapClosure() { |
|
|
|
out.length = 1; |
|
|
|
out.length = 1; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
get length() { |
|
|
|
|
|
|
|
return this._map.length; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
get isIdentityCMap() { |
|
|
|
get isIdentityCMap() { |
|
|
|
if (!(this.name === 'Identity-H' || this.name === 'Identity-V')) { |
|
|
|
if (!(this.name === 'Identity-H' || this.name === 'Identity-V')) { |
|
|
|
return false; |
|
|
|
return false; |
|
|
@ -20271,6 +20275,10 @@ var IdentityCMap = (function IdentityCMapClosure() { |
|
|
|
|
|
|
|
|
|
|
|
readCharCode: CMap.prototype.readCharCode, |
|
|
|
readCharCode: CMap.prototype.readCharCode, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
get length() { |
|
|
|
|
|
|
|
return 0x10000; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
get isIdentityCMap() { |
|
|
|
get isIdentityCMap() { |
|
|
|
error('should not access .isIdentityCMap'); |
|
|
|
error('should not access .isIdentityCMap'); |
|
|
|
} |
|
|
|
} |
|
|
|