Sha256: b45b099a0aa58a1dd66bd28e9233ff85bc90fa4a12e8ab9e8b0388af6926aa36

Contents?: true

Size: 519 Bytes

Versions: 2

Compression:

Stored size: 519 Bytes

Contents

/**
 * @constructor
 * @param {boolean} webfontSupport
 * @param {boolean} webKitFallbackBug
 */
webfont.BrowserInfo = function (webfontSupport, webKitFallbackBug) {
  this.webfontSupport_ = webfontSupport;
  this.webKitFallbackBug_ = webKitFallbackBug;
};

/**
 * @return {boolean}
 */
webfont.BrowserInfo.prototype.hasWebFontSupport = function () {
  return this.webfontSupport_;
};

/**
 * @return {boolean}
 */
webfont.BrowserInfo.prototype.hasWebKitFallbackBug = function () {
  return this.webKitFallbackBug_;
};

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
webfontloader-1.2.1 src/core/browserinfo.js
webfontloader-1.2.0 src/core/browserinfo.js