|
@@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
|
|
|
(typeof window !== 'undefined' ? window : this).PDFJS = {};
|
|
|
}
|
|
|
|
|
|
-PDFJS.version = '1.0.1006';
|
|
|
-PDFJS.build = 'cff9184';
|
|
|
+PDFJS.version = '1.0.1008';
|
|
|
+PDFJS.build = '0c3a8ba';
|
|
|
|
|
|
(function pdfjsWrapper() {
|
|
|
// Use strict in our context only - users might not want it
|
|
@@ -20569,7 +20569,8 @@ var nonStdFontMap = {
|
|
|
'MS-PMincho': 'MS PMincho',
|
|
|
'MS-PMincho-Bold': 'MS PMincho-Bold',
|
|
|
'MS-PMincho-BoldItalic': 'MS PMincho-BoldItalic',
|
|
|
- 'MS-PMincho-Italic': 'MS PMincho-Italic'
|
|
|
+ 'MS-PMincho-Italic': 'MS PMincho-Italic',
|
|
|
+ 'Wingdings': 'ZapfDingbats'
|
|
|
};
|
|
|
|
|
|
var serifFonts = {
|
|
@@ -22698,6 +22699,10 @@ var Font = (function FontClosure() {
|
|
|
this.toFontChar[charCode] = fontChar;
|
|
|
}
|
|
|
} else if (/Dingbats/i.test(fontName)) {
|
|
|
+ if (/Wingdings/i.test(name)) {
|
|
|
+ warn('Wingdings font without embedded font file, ' +
|
|
|
+ 'falling back to the ZapfDingbats encoding.');
|
|
|
+ }
|
|
|
var dingbats = Encodings.ZapfDingbatsEncoding;
|
|
|
for (charCode in dingbats) {
|
|
|
fontChar = DingbatsGlyphsUnicode[dingbats[charCode]];
|