Feature - Google Analytics - Addressing PR Comments.

This commit is contained in:
c
2023-01-10 20:25:45 +00:00
parent 29e24e0de9
commit 99c0b8cb71
5 changed files with 21 additions and 12 deletions

View File

@@ -0,0 +1,11 @@
let GoogleAnalytics = (() => {
function getGoogleAnalyticsScript(tagId) {
return "<script async src=\"https://www.googletagmanager.com/gtag/js?id=" + tagId + "\"></script>" +
"<script>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date());gtag('config', '" + tagId + "'); </script>";
}
return {
getGoogleAnalyticsScript: getGoogleAnalyticsScript
};
})();
module.exports = GoogleAnalytics;