Get rid of GA
This commit is contained in:
parent
0c5d0dfe3b
commit
6fc21d75d1
4 changed files with 2560 additions and 3027 deletions
5534
package-lock.json
generated
5534
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "vanity-eth",
|
"name": "vanity-eth",
|
||||||
"description": "Online ETH vanity address generator",
|
"description": "Browser-based ETH vanity address generator ",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"> 1%",
|
"> 1%",
|
||||||
|
@ -26,7 +26,6 @@
|
||||||
"sass-loader": "^6.0.6",
|
"sass-loader": "^6.0.6",
|
||||||
"secp256k1": "^3.5.0",
|
"secp256k1": "^3.5.0",
|
||||||
"url-loader": "^0.6.2",
|
"url-loader": "^0.6.2",
|
||||||
"uuid": "^3.2.1",
|
|
||||||
"vue": "^2.5.11",
|
"vue": "^2.5.11",
|
||||||
"vue-loader": "^13.0.5",
|
"vue-loader": "^13.0.5",
|
||||||
"vue-template-compiler": "^2.4.4",
|
"vue-template-compiler": "^2.4.4",
|
||||||
|
|
16
src/App.vue
16
src/App.vue
|
@ -211,12 +211,28 @@
|
||||||
i.href = icon;
|
i.href = icon;
|
||||||
document.head.appendChild(i);
|
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 () {
|
created: function () {
|
||||||
this.addFavicon();
|
this.addFavicon();
|
||||||
this.countCores();
|
this.countCores();
|
||||||
this.initWorkers();
|
this.initWorkers();
|
||||||
|
this.initFathom();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<a href="https://github.com/bokub/vanity-eth" target="_blank" aria-label="View source on Github">
|
<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">
|
<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>
|
<defs>
|
||||||
<mask id="octomask">
|
<mask id="octomask">
|
||||||
|
@ -15,38 +14,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import uuidv1 from 'uuid/v1';
|
export default {}
|
||||||
|
|
||||||
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');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="sass" scoped>
|
<style lang="sass" scoped>
|
||||||
|
|
Loading…
Add table
Reference in a new issue