Skip to content

Commit

Permalink
fix: update Matomo integration client code (#2526)
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron <admin@datahoarder.dev>
  • Loading branch information
Aaron committed Oct 3, 2020
1 parent 084dcd6 commit 23e3403
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
4 changes: 2 additions & 2 deletions server/modules/analytics/matomo/code.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
head: |
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq || [];
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
Expand All @@ -10,7 +10,7 @@ head: |
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '{{siteId}}']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src='{{scriptUrl}}'; s.parentNode.insertBefore(g,s);
g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="{{serverHost}}/matomo.php?idsite={{siteId}}&amp;rec=1" style="border:0;" alt="" /></p></noscript>
Expand Down
6 changes: 0 additions & 6 deletions server/modules/analytics/matomo/definition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,3 @@ props:
hint: Including https:// and optionally the port. Without trailing slash. (e.g. https://example.matomo.cloud)
default: https://example.matomo.cloud
order: 2
scriptUrl:
type: String
title: Tracking Script URL
hint: The full URL of the Matomo tracking script.
default: //cdn.matomo.cloud/EXAMPLE.matomo.cloud/matomo.js
order: 3

0 comments on commit 23e3403

Please sign in to comment.