Sha256: 629bac73c1893a9a685d24edec9ae410f2406e5bcb6536bd72efe3e987624de3
Contents?: true
Size: 1.83 KB
Versions: 5
Compression:
Stored size: 1.83 KB
Contents
/** * @constructor */ webfont.TypekitScript = function(domHelper, configuration) { this.domHelper_ = domHelper; this.configuration_ = configuration; this.fontFamilies_ = []; this.fontVariations_ = {}; }; webfont.TypekitScript.NAME = 'typekit'; webfont.TypekitScript.HOOK = '__webfonttypekitmodule__'; webfont.TypekitScript.prototype.getScriptSrc = function(kitId) { var protocol = this.domHelper_.getProtocol(); var api = this.configuration_['api'] || protocol + '//use.typekit.com'; return api + '/' + kitId + '.js'; }; webfont.TypekitScript.prototype.supportUserAgent = function(userAgent, support) { var kitId = this.configuration_['id']; var configuration = this.configuration_; var loadWindow = this.domHelper_.getLoadWindow(); var self = this; if (kitId) { // Provide data to Typekit for processing.main if (!loadWindow[webfont.TypekitScript.HOOK]) { loadWindow[webfont.TypekitScript.HOOK] = {}; } // Typekit will call 'init' to indicate whether it supports fonts // and what fonts will be provided. loadWindow[webfont.TypekitScript.HOOK][kitId] = function(callback) { var init = function(typekitSupports, fontFamilies, fontVariations) { self.fontFamilies_ = fontFamilies; self.fontVariations_ = fontVariations; support(typekitSupports); }; callback(userAgent, configuration, init); }; // Load the Typekit script. var script = this.domHelper_.createScriptSrc(this.getScriptSrc(kitId)) this.domHelper_.insertInto('head', script); } else { support(true); } }; webfont.TypekitScript.prototype.load = function(onReady) { onReady(this.fontFamilies_, this.fontVariations_); }; globalNamespaceObject.addModule(webfont.TypekitScript.NAME, function(configuration, domHelper) { return new webfont.TypekitScript(domHelper, configuration); });
Version data entries
5 entries across 5 versions & 1 rubygems