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
path: root/misc
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-09-14 22:30:31 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-09-14 22:30:31 +0400
commitec8a5f36e92fa9b7753af2f95439c6635b4b3b35 (patch)
tree3b25a2646293fc83beffac4d85cc62dfff99a687 /misc
parentb77da57fc5f596ef3e5eaea206f919b22002990f (diff)
refs #4996 also display URL of media on hover next to the image. added some documentation
Diffstat (limited to 'misc')
-rw-r--r--misc/internal-docs/content-tracking.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/internal-docs/content-tracking.md b/misc/internal-docs/content-tracking.md
index 37cadc0005..a94dcc4733 100644
--- a/misc/internal-docs/content-tracking.md
+++ b/misc/internal-docs/content-tracking.md
@@ -308,7 +308,7 @@ Note: In case you have link tracking enabled you should call `enableLinkTracking
#### `trackAllContentImpressions()`
You can use this method to scan the entire DOM for content blocks.
-For each content block we will track a content impression immediately unless you have called `trackVisibleContentImpressions()` before see below.
+For each content block we will track a content impression immediately. If you only want to track visible content impression have a look at `trackVisibleContentImpressions()`.
Note: We will not send an impression of the same content block twice if you call this method multiple times unless `trackPageView()` is called meanwhile. This is useful for single page applications. The "same" content blocks means if a content block has the identical name, piece and target as an already tracked one.
Note: At this stage we do not exeute this method automatically along with a trackPageView(), we can do this later once we know it works
@@ -442,7 +442,7 @@ Nothing special here I think. We would probably automatically detect the type of
* When we listen to scroll events we currently do not detect if user scrolls the entire page, not if within a div
* We need to check all parent elements of a content block whether it is scrollable and if so connect an event to this
* We could have in V2 or V3 an attribute data-content-interaction="submit" to tell Piwik to listen to the submit event and to use "submit" as an interaction
-
+* Provide more reports like which interactions, which targets, and more possible
## Open questions