|
@@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfCombined = {}));
|
|
|
// Use strict in our context only - users might not want it
|
|
|
'use strict';
|
|
|
|
|
|
-var pdfjsVersion = '1.3.226';
|
|
|
-var pdfjsBuild = '2327482';
|
|
|
+var pdfjsVersion = '1.3.228';
|
|
|
+var pdfjsBuild = '0aa373c';
|
|
|
|
|
|
var pdfjsFilePath =
|
|
|
typeof document !== 'undefined' && document.currentScript ?
|
|
@@ -37367,10 +37367,12 @@ var Font = (function FontClosure() {
|
|
|
var glyphId = properties.glyphNames.indexOf(glyphName);
|
|
|
if (glyphId > 0 && hasGlyph(glyphId, -1, -1)) {
|
|
|
charCodeToGlyphId[charCode] = glyphId;
|
|
|
- } else {
|
|
|
- charCodeToGlyphId[charCode] = 0; // notdef
|
|
|
+ found = true;
|
|
|
}
|
|
|
}
|
|
|
+ if (!found) {
|
|
|
+ charCodeToGlyphId[charCode] = 0; // notdef
|
|
|
+ }
|
|
|
}
|
|
|
} else if (cmapPlatformId === 0 && cmapEncodingId === 0) {
|
|
|
// Default Unicode semantics, use the charcodes as is.
|