mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
store unicode value as integer instead of hex string in glyphlist
This commit is contained in:
parent
00bde52237
commit
2311c954f8
2 changed files with 4204 additions and 4204 deletions
2
fonts.js
2
fonts.js
|
@ -40,7 +40,7 @@ var Fonts = {
|
|||
|
||||
unicodeFromCode: function fonts_unicodeFromCode(aCode) {
|
||||
var unicode = GlyphsUnicode[this.active.encoding[aCode]];
|
||||
return unicode ? "0x" + unicode : aCode;
|
||||
return unicode ? unicode : aCode;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
8406
glyphlist.js
8406
glyphlist.js
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue