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@gmail.com>2015-12-04 06:18:56 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-12-04 06:18:56 +0300
commit34b615a8d46a8d4cac90dd17dc7a34a18fc232fb (patch)
treec18b61d73e312743e8c6f9fd5a2fab3144409aaa
parent4d45f92a5e99ba207c5f241bf129693844150088 (diff)
added documentation for cookieConfigPath detection
-rw-r--r--js/piwik.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/js/piwik.js b/js/piwik.js
index fa05e5e58d..94816854a8 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -5520,7 +5520,12 @@ if (typeof Piwik !== 'object') {
/**
* Set array of domains to be treated as local. Also supports path, eg '.piwik.org/subsite1'. In this
* case all links that don't go to '*.piwik.org/subsite1/ *' would be treated as outlinks.
- * For example a link to 'piwik.org/' or 'piwik.org/subsite2' both would be treated as outlinks
+ * For example a link to 'piwik.org/' or 'piwik.org/subsite2' both would be treated as outlinks.
+ *
+ * We might automatically set a cookieConfigPath to avoid creating several cookies under one domain
+ * if there is a hostAlias defined with a path. Say a user is visiting 'http://piwik.org/subsite1'
+ * and '.piwik.org/subsite1' is set as a hostsAlias. Piwik will automatically use '/subsite1' as
+ * cookieConfigPath.
*
* @param string|array hostsAlias
*/