var hostName = window.location.hostname.toLowerCase(); var isProdDomain = hostName.indexOf('nswknockouthealthchallenge') > -1 var isFrontPage = window.document.URL.search('frontpage') > -1 var GOOGLE_ANALYTICS_CONFIG = 'UA-87947990-2' if (isProdDomain) { window.USE_THIRD_PARTY = true window.GOOGLE_ANALYTICS_CONFIG = GOOGLE_ANALYTICS_CONFIG // Google Analytics script var scriptElAnalytics1 = window.document.createElement('script') scriptElAnalytics1.async = true scriptElAnalytics1.src = `https://www.googletagmanager.com/gtag/js?id=${GOOGLE_ANALYTICS_CONFIG}` window.document.head.appendChild(scriptElAnalytics1) var scriptElAnalytics2 = window.document.createElement('script') scriptElAnalytics2.innerHTML = ` window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); if (isFrontPage) { gtag('config', GOOGLE_ANALYTICS_CONFIG); } ` window.document.head.appendChild(scriptElAnalytics2) // Hotjar script var scriptElHotjar = window.document.createElement('script') scriptElHotjar.innerHTML = ` (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:1887784,hjsv:6}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=') ` window.document.head.appendChild(scriptElHotjar) }