fix: update Matomo integration client code (#2526)

Signed-off-by: Aaron <admin@datahoarder.dev>
This commit is contained in:
Aaron 2020-10-03 22:22:02 +02:00 committed by GitHub
parent 084dcd69d1
commit 23e3403054
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 8 deletions

View File

@ -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']);
@ -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>

View File

@ -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