blob: ec7705f411e9a37bc116cce00282f4119113159c [file] [log] [blame]
FontManager = (function () {
var Font = function () {
this.fonts = [];
this.chars = null;
this.typekitLoaded = 0;
this.isLoaded = false;
this.initTime = Date.now();
};
return Font;
}());