1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Let Chrome (and others?) handle Type1 Fonts (TrueType not working yet)

This commit is contained in:
Vivien Nicolas 2011-07-03 14:52:00 +02:00
parent f58983f4e5
commit cdff127eef

View file

@ -1656,7 +1656,7 @@ CFF.prototype = {
};
charstrings.sort(function charstrings_sort(a, b) {
return a.unicode > b.unicode;
return a.unicode - b.unicode;
});
return charstrings;
},