We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa9d73 commit 7704c93Copy full SHA for 7704c93
βjs/oftn/site.js
@@ -14,7 +14,7 @@ ga('send', 'pageview');
14
15
(function() { // randomized per-tab emoji favicons
16
var favicon_emoji = "π¨βπ¬ π©βπ¬ π¨βπ» π©βπ» π¨βπ π©βπ π€― π€ β‘ π§οΈ π π» π§ π» π βοΈ πΈ π π π°οΈ β¨ π₯".split(" ");
17
- if (navigator.platform === "Win32") { // only Microsoft implements hacker cat
+ if (/^Win\d+$/.test(navigator.platform)) { // only Microsoft implements hacker cat
18
favicon_emoji.push("π±βπ»");
19
}
20
var favicon = sessionStorage.favicon = sessionStorage.favicon || favicon_emoji[crypto.getRandomValues(new Uint8Array(1))[0] % favicon_emoji.length];
0 commit comments