update components

This commit is contained in:
Luke Pulverenti 2016-05-26 15:20:24 -04:00
parent 113b487c37
commit 447eff16cd
10 changed files with 47 additions and 75 deletions

View file

@ -1,5 +1,5 @@
/*
* Fingerprintjs2 1.2.0 - Modern & flexible browser fingerprint library v2
* Fingerprintjs2 1.3.0 - Modern & flexible browser fingerprint library v2
* https://github.com/Valve/fingerprintjs2
* Copyright (c) 2015 Valentin Vasilyev (valentin.vasilyev@outlook.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
@ -421,7 +421,7 @@
// creates a span and load the font to detect and a base font for fallback
var createSpanWithFonts = function(fontToDetect, baseFont) {
var s = createSpan();
s.style.fontFamily = fontToDetect + "," + baseFont;
s.style.fontFamily = "'" + fontToDetect + "'," + baseFont;
return s;
};
@ -1270,6 +1270,6 @@
return ("00000000" + (h1[0] >>> 0).toString(16)).slice(-8) + ("00000000" + (h1[1] >>> 0).toString(16)).slice(-8) + ("00000000" + (h2[0] >>> 0).toString(16)).slice(-8) + ("00000000" + (h2[1] >>> 0).toString(16)).slice(-8);
}
};
Fingerprint2.VERSION = "1.2.0";
Fingerprint2.VERSION = "1.3.0";
return Fingerprint2;
});