Skip to content

Commit

Permalink
feat: Migrate to gtag and support GA4
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Young <[email protected]>
  • Loading branch information
assanges committed Feb 26, 2023
1 parent c78bb69 commit 6ff5a3a
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions public/views/shared/ga.ejs
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
<% if(typeof GA !== 'undefined' && GA) { %>
<script nonce="<%= cspNonce %>">
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', '<%= GA %>', 'auto');
ga('send', 'pageview');
<script nonce="<%= cspNonce %>" async src="https://www.googletagmanager.com/gtag/js?id=<%= GA %>">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '<%= GA %>');
gtag('event', 'page_view');
</script>
<% } %>

0 comments on commit 6ff5a3a

Please sign in to comment.