Commit e55dc107 authored by lianahus's avatar lianahus

refactoring

parent 56e19147
...@@ -34,9 +34,12 @@ ...@@ -34,9 +34,12 @@
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!-- Matomo --> <!-- Matomo -->
<script type="text/javascript"> <script type="text/javascript">
if (window.location.hostname === 'remix.ethereum.org' || const domains = {
window.location.hostname === 'remix-alpha.ethereum.org' || 'remix-alpha.ethereum.org': 27,
window.location.hostname === 'remix-beta.ethereum.org') { 'remix-beta.ethereum.org': 25,
'remix.ethereum.org': 23
}
if (domains[window.location.hostname]) {
var _paq = window._paq = window._paq || [] var _paq = window._paq = window._paq || []
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */ /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['disableCookies']); _paq.push(['disableCookies']);
...@@ -45,13 +48,7 @@ ...@@ -45,13 +48,7 @@
(function() { (function() {
var u="https://matomo.ethereum.org/"; var u="https://matomo.ethereum.org/";
_paq.push(['setTrackerUrl', u+'matomo.php']) _paq.push(['setTrackerUrl', u+'matomo.php'])
if (window.location.hostname === 'remix.ethereum.org') { _paq.push(['setSiteId', domains[window.location.hostname]])
_paq.push(['setSiteId', '23'])
} else if (window.location.hostname === 'remix-alpha.ethereum.org') {
_paq.push(['setSiteId', '27'])
} else if (window.location.hostname === 'remix-beta.ethereum.org') {
_paq.push(['setSiteId', '25'])
}
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0] var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]
g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s) g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s)
})() })()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment