blob: 2e37782f75e876a6f3911299cfd0070d4fa752e9 [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;
}());