Browse Source
fix: update Matomo integration client code (#2526)
Signed-off-by: Aaron <admin@datahoarder.dev>
pull/2543/head
Aaron
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
8 deletions
-
server/modules/analytics/matomo/code.yml
-
server/modules/analytics/matomo/definition.yml
|
|
@ -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}}&rec=1" style="border:0;" alt="" /></p></noscript> |
|
|
|
|
|
@ -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 |