1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Merge pull request #907 from notmasteryet/tree-43

Fixes the unicode symbols on the text layer
This commit is contained in:
Artur Adib 2011-12-07 09:26:21 -08:00
commit 4a9275268d

View file

@ -2142,7 +2142,8 @@ var Font = (function Font() {
break;
}
var unicodeChars = this.toUnicode ? this.toUnicode[charcode] : charcode;
var unicodeChars = !('toUnicode' in this) ? charcode :
this.toUnicode[charcode] || charcode;
if (typeof unicodeChars === 'number')
unicodeChars = String.fromCharCode(unicodeChars);