Sha256: 184d753b2776201669f9b0666c2a949f3ed9ba16513fed8fe669c5e63ae72f3d
Contents?: true
Size: 1.84 KB
Versions: 7
Compression:
Stored size: 1.84 KB
Contents
goog.provide('webfont.FontApiUrlBuilder'); /** * @constructor */ webfont.FontApiUrlBuilder = function(apiUrl, protocol, text) { if (apiUrl) { this.apiUrl_ = apiUrl; } else { this.apiUrl_ = protocol + webfont.FontApiUrlBuilder.DEFAULT_API_URL; } this.fontFamilies_ = []; this.subsets_ = []; this.text_ = text || ''; }; webfont.FontApiUrlBuilder.DEFAULT_API_URL = '//fonts.googleapis.com/css'; goog.scope(function () { var FontApiUrlBuilder = webfont.FontApiUrlBuilder; FontApiUrlBuilder.prototype.setFontFamilies = function(fontFamilies) { this.parseFontFamilies_(fontFamilies); }; FontApiUrlBuilder.prototype.parseFontFamilies_ = function(fontFamilies) { var length = fontFamilies.length; for (var i = 0; i < length; i++) { var elements = fontFamilies[i].split(':'); if (elements.length == 3) { this.subsets_.push(elements.pop()); } var joinCharacter = ''; if (elements.length == 2 && elements[1] != ''){ joinCharacter = ':'; } this.fontFamilies_.push(elements.join(joinCharacter)); } }; FontApiUrlBuilder.prototype.webSafe = function(string) { return string.replace(/ /g, '+'); }; FontApiUrlBuilder.prototype.build = function() { if (this.fontFamilies_.length == 0) { throw new Error('No fonts to load !'); } if (this.apiUrl_.indexOf("kit=") != -1) { return this.apiUrl_; } var length = this.fontFamilies_.length; var sb = []; for (var i = 0; i < length; i++) { sb.push(this.webSafe(this.fontFamilies_[i])); } var url = this.apiUrl_ + '?family=' + sb.join('%7C'); // '|' escaped. if (this.subsets_.length > 0) { url += '&subset=' + this.subsets_.join(','); } if (this.text_.length > 0) { url += '&text=' + encodeURIComponent(this.text_); } return url; }; });
Version data entries
7 entries across 7 versions & 1 rubygems