Skip to content

Commit

Permalink
re-add google analytics to head tag
Browse files Browse the repository at this point in the history
  • Loading branch information
JMaio committed Apr 11, 2020
1 parent d79b637 commit 9198ecd
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Mandelbrot Maps - Fractal Explorer in WebGL</title>

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25811690-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-25811690-6');
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand All @@ -48,14 +58,6 @@
To create a production bundle, use `npm run build` or `yarn build`.
-->

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25811690-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-25811690-6');
</script>

</body>
</html>

0 comments on commit 9198ecd

Please sign in to comment.