Get rid of GA
This commit is contained in:
parent
0c5d0dfe3b
commit
6fc21d75d1
4 changed files with 2560 additions and 3027 deletions
5532
package-lock.json
generated
5532
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vanity-eth",
|
||||
"description": "Online ETH vanity address generator",
|
||||
"description": "Browser-based ETH vanity address generator ",
|
||||
"version": "1.0.0",
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
|
@ -26,7 +26,6 @@
|
|||
"sass-loader": "^6.0.6",
|
||||
"secp256k1": "^3.5.0",
|
||||
"url-loader": "^0.6.2",
|
||||
"uuid": "^3.2.1",
|
||||
"vue": "^2.5.11",
|
||||
"vue-loader": "^13.0.5",
|
||||
"vue-template-compiler": "^2.4.4",
|
||||
|
|
16
src/App.vue
16
src/App.vue
|
@ -211,12 +211,28 @@
|
|||
i.href = icon;
|
||||
document.head.appendChild(i);
|
||||
},
|
||||
initFathom: function () {
|
||||
// Fathom - simple website analytics - https://github.com/usefathom/fathom
|
||||
(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('trackPageview');
|
||||
}
|
||||
},
|
||||
|
||||
created: function () {
|
||||
this.addFavicon();
|
||||
this.countCores();
|
||||
this.initWorkers();
|
||||
this.initFathom();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
<template>
|
||||
<a href="https://github.com/bokub/vanity-eth" target="_blank" aria-label="View source on Github">
|
||||
<img :src="'https://ssl.google-analytics.com/collect?v=1&t=pageview&tid=' + tid + '&dp=%2F&cid=' + cid + '&dr=' + dr + '&sr=' + sr + '&vp=' + vp + '&z=' + new Date().getTime()">
|
||||
<svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true">
|
||||
<defs>
|
||||
<mask id="octomask">
|
||||
|
@ -15,38 +14,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import uuidv1 from 'uuid/v1';
|
||||
|
||||
export default {
|
||||
data: function () {
|
||||
return {
|
||||
tid: process.env.TID,
|
||||
cid: localStorage.getItem('cid'),
|
||||
dr: encodeURIComponent(document.referrer),
|
||||
vp: document.documentElement.clientHeight + 'x' + document.documentElement.clientWidth,
|
||||
sr: window.screen.height + 'x' + window.screen.width,
|
||||
}
|
||||
},
|
||||
created: function () {
|
||||
if (!this.cid) {
|
||||
this.cid = uuidv1();
|
||||
localStorage.setItem('cid', this.cid);
|
||||
}
|
||||
// Fathom - simple website analytics - https://github.com/usefathom/fathom
|
||||
(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('trackPageview');
|
||||
}
|
||||
}
|
||||
export default {}
|
||||
</script>
|
||||
|
||||
<style lang="sass" scoped>
|
||||
|
|
Loading…
Add table
Reference in a new issue