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-12 15:50:45 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-09-12 15:50:45 +0400
commit0aea1092d32050dfb0b0f6791061536a6777acbc (patch)
treea75569f735aa0613c14a5b6859858f243499f0a5
parent99495b246cacd32be61e44519801b09a236c8fca (diff)
refs #4996 apply enableLinkTracking first before trackContentImpressions or so
-rw-r--r--js/piwik.js2
-rw-r--r--misc/internal-docs/content-tracking.md1
2 files changed, 1 insertions, 2 deletions
diff --git a/js/piwik.js b/js/piwik.js
index 1c8b48c6d9..979861fd3a 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -4819,7 +4819,7 @@ if (typeof Piwik !== 'object') {
asyncTracker = new Tracker();
- var applyFirst = {setTrackerUrl: 1, setAPIUrl: 1, setSiteId: 1, disableCookies: 1};
+ var applyFirst = {setTrackerUrl: 1, setAPIUrl: 1, setSiteId: 1, disableCookies: 1, enableLinkTracking: 1};
var methodName;
// find the call to setTrackerUrl or setSiteid (if any) and call them first
diff --git a/misc/internal-docs/content-tracking.md b/misc/internal-docs/content-tracking.md
index 0ae105662f..58b16fa5f3 100644
--- a/misc/internal-docs/content-tracking.md
+++ b/misc/internal-docs/content-tracking.md
@@ -441,7 +441,6 @@ Nothing special here I think. We would probably automatically detect the type of
* When a user clicks on an interaction, we should check whether we have already tracked the impression as the content is visible now. If not tracked before, we should track the impression as well
* There can be a scroll or timer event that detects the same content became visible as well. This would not be a problem since we do not track same content block twice
* Maybe v2
-* We should reorder _paq links to make sure enableLinkTracking is called before any trackContent*() calls
* Create issue for not installed core dimensions if they are disabled by default (Action / Contents dependency)
* Content piece undefined vs Unknown?