Skip to content

Commit

Permalink
Fix Matomo
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzdogan committed Jun 23, 2023
1 parent 410b300 commit d9ae347
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ui/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@
<script>
var _paq = (window._paq = window._paq || []);
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["disableCookies"]);
_paq.push(["setExcludedQueryParams", ["code", "gist"]]);
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function () {
var u = "https://ethereumfoundation.matomo.cloud/matomo.php";
var id = "30";
_paq.push(["addTracker", u, id]);
var u = "https://ethereumfoundation.matomo.cloud/";
_paq.push(["setTrackerUrl", u + "matomo.php"]);
_paq.push(["setSiteId", "30"]);
var d = document,
g = d.createElement("script"),
s = d.getElementsByTagName("script")[0];
g.async = true;
g.src = u;
g.src = "//cdn.matomo.cloud/ethereumfoundation.matomo.cloud/matomo.js";
s.parentNode.insertBefore(g, s);
})();
</script>
Expand Down

0 comments on commit d9ae347

Please sign in to comment.