Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-09-04 13:27:46 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-09-04 13:27:46 +0400
commit7a297b885ce3a29ca32d9fcd1451b0189574718f (patch)
treee12b74a1ce58d7cd824f54ae04fae467e31e2d36 /misc/internal-docs/content-tracking.md
parent4a439299d1b067b2d02d0cd8da37405b97a565af (diff)
refs #4996 ignore interactions if set, detect content blocks as visible that were visible before but are not now, mark absoulte url out of content target in case it is a link
Diffstat (limited to 'misc/internal-docs/content-tracking.md')
-rw-r--r--misc/internal-docs/content-tracking.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/misc/internal-docs/content-tracking.md b/misc/internal-docs/content-tracking.md
index 2642a65e8f..3082c10e71 100644
--- a/misc/internal-docs/content-tracking.md
+++ b/misc/internal-docs/content-tracking.md
@@ -226,11 +226,13 @@ As the target element has a `href` attribute we can detect the content target au
Interactions can be detected declarative in case the detected target element is an `a` element with an `href` attribute. If not, you will have to track
the interaction programmatically, see one of the next sections. We generally treat links to the same page differently than downloads or outlinks.
-#### Links to the same website
+#### Links to the same domain
In case we detect a link to the same website we will replace the current `href` attribute with a link to the `piwik.php` tracker URL. Whenever a user clicks on such a link we will first send the user to the `piwik.php` of your Piwik installation and then redirect the user from there to the actual page. This click will be tracked as an event.
If the URL of the replaced `href` attribute changes meanwhile by your code we will respect the new `href` attribute and make sure to update the link with a `piwik.php` URL. Therefore we will add a `click` listener to the element.
+Note: The referrer information will get lost when redirecting from piwik.php to your page. If you depend on this you need to disable automatic tracking of interaction see below
+
If you have added an `href` attribute after we scanned the DOM for content blocks we can not detect this and an interaction won't be tracked.
#### Outlinks and downloads