diff --git a/docs/glyph-inspector.html b/docs/glyph-inspector.html index 60732306..f399fdbd 100644 --- a/docs/glyph-inspector.html +++ b/docs/glyph-inspector.html @@ -131,6 +131,7 @@

Free Software

var glyph = font.glyphs.get(glyphIndex), html = '
'; html += '
name
'+glyph.name+'
'; + html += '
glyph
'+String.fromCodePoint.apply(null, glyph.unicodes) + '
'; if (glyph.unicodes.length > 0) { html += '
unicode
'+ glyph.unicodes.map(formatUnicode).join(', ') +'
';