1
0
mirror of https://github.com/thangisme/notes.git synced 2024-10-03 13:26:02 -04:00

Modified the google analytics code to match the new tags used by GA

This commit is contained in:
Adam Green 2019-07-24 09:35:13 -04:00
parent 721484a26e
commit aa0d8f1d40

View File

@ -15,12 +15,15 @@
<link rel="stylesheet" href="{{ "/assets/css/just-the-docs.css" | absolute_url }}"> <link rel="stylesheet" href="{{ "/assets/css/just-the-docs.css" | absolute_url }}">
{% if site.ga_tracking != nil %} {% if site.ga_tracking != nil %}
<script async src="https://www.googletagmanager.com/gtag/js?id={{site.ga_tracking}}"></script>
<script> <script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; window.dataLayer = window.dataLayer || [];
ga('create', '{{ site.ga_tracking }}', '{{ site.url }}'); function gtag(){dataLayer.push(arguments);}
ga('send', 'pageview'); gtag('js', new Date());
gtag('config', "{{site.ga_tracking}}");
</script> </script>
<script async src="https://www.google-analytics.com/analytics.js"></script>
{% endif %} {% endif %}
{% if site.search_enabled != nil %} {% if site.search_enabled != nil %}