Replace fathom with plausible

This commit is contained in:
Boris Kubiak 2020-10-14 16:00:43 +02:00
parent a073b224f4
commit 75920ba142
2 changed files with 1 additions and 22 deletions

View file

@ -20,6 +20,7 @@
<meta name="google-site-verification" content="DFWJVWz9IRrh-wjBxn0Y8ith5FTqMeJTSUtuJ595BEs" /> <meta name="google-site-verification" content="DFWJVWz9IRrh-wjBxn0Y8ith5FTqMeJTSUtuJ595BEs" />
<link rel="stylesheet" href="dist/style.css" /> <link rel="stylesheet" href="dist/style.css" />
<link rel="icon" type="image/x-icon" href="dist/favicon.ico" /> <link rel="icon" type="image/x-icon" href="dist/favicon.ico" />
<script async defer data-domain="vanity-eth.tk" src="https://metrics.vanity-eth.tk/js/plausible.js"></script>
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>

View file

@ -206,27 +206,6 @@
this.threads = this.cores; this.threads = this.cores;
} }
}, },
initFathom: function () {
if (window.location.hostname === 'localhost') {
return; // No stats when coding
}
// Fathom - simple website analytics - https://github.com/usefathom/fathom
/* eslint-disable */
(function (f, a, t, h, o, m) {
a[h] = a[h] || function () {
(a[h].q = a[h].q || []).push(arguments);
};
o = f.createElement('script');
m = f.getElementsByTagName('script')[0];
o.async = 1;
o.src = t;
o.id = 'fathom-script';
m.parentNode.insertBefore(o, m);
})(document, window, 'https://stats.vanity-eth.tk/tracker.js', 'fathom');
fathom('set', 'siteId', 'BUIGR');
fathom('trackPageview');
/* eslint-enable */
},
checkLocation() { checkLocation() {
try { try {
this.error = window.self !== window.top ? 'insecure_location' : this.error; this.error = window.self !== window.top ? 'insecure_location' : this.error;
@ -271,7 +250,6 @@
this.checkLocation(); this.checkLocation();
this.countCores(); this.countCores();
this.initWorkers(); this.initWorkers();
this.initFathom();
window['benchmark'] = this.benchmark; window['benchmark'] = this.benchmark;
} }
}; };