Browse Source

store unicode value as integer instead of hex string in glyphlist

Andreas Gal 14 years ago
parent
commit
5625a667ff
  1. 2
      fonts.js
  2. 8406
      glyphlist.js

2
fonts.js

@ -40,7 +40,7 @@ var Fonts = {
unicodeFromCode: function fonts_unicodeFromCode(aCode) { unicodeFromCode: function fonts_unicodeFromCode(aCode) {
var unicode = GlyphsUnicode[this.active.encoding[aCode]]; var unicode = GlyphsUnicode[this.active.encoding[aCode]];
return unicode ? "0x" + unicode : aCode; return unicode ? unicode : aCode;
} }
}; };

8406
glyphlist.js

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save