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/js
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@gmail.com>2015-12-04 06:15:03 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-12-04 06:15:03 +0300
commit4d45f92a5e99ba207c5f241bf129693844150088 (patch)
tree4be3274e45e46a1ddfffa7d34fc1581cf075095f /js
parent66a15fd6457df333fa3e8bdd0a5c80674ca99dc4 (diff)
fix jslint
Diffstat (limited to 'js')
-rw-r--r--js/piwik.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/js/piwik.js b/js/piwik.js
index a2fc4c0595..fa05e5e58d 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -1021,7 +1021,7 @@ if (typeof JSON2 !== 'object' && typeof window.JSON === 'object' && window.JSON.
trackVisibleContentImpressions, isTrackOnlyVisibleContentEnabled, port, isUrlToCurrentDomain,
isNodeAuthorizedToTriggerInteraction, replaceHrefIfInternalLink, getConfigDownloadExtensions, disableLinkTracking,
substr, setAnyAttribute, wasContentTargetAttrReplaced, max, abs, childNodes, compareDocumentPosition, body,
- getConfigVisitorCookieTimeout, getRemainingVisitorCookieTimeout, getDomains,
+ getConfigVisitorCookieTimeout, getRemainingVisitorCookieTimeout, getDomains, getConfigCookiePath,
newVisitor, uuid, createTs, visitCount, currentVisitTs, lastVisitTs, lastEcommerceOrderTs,
"", "\b", "\t", "\n", "\f", "\r", "\"", "\\", apply, call, charCodeAt, getUTCDate, getUTCFullYear, getUTCHours,
getUTCMinutes, getUTCMonth, getUTCSeconds, hasOwnProperty, join, lastIndex, length, parse, prototype, push, replace,
@@ -4927,7 +4927,8 @@ if (typeof Piwik !== 'object') {
// also a config alias allowing "apache.piwik/foo". In this case we're not allowed to set
// the cookie for "/foo/bar" but "/foo"
var pathAliasParts = aliasPath.split('/');
- for (var i = 2; i < pathAliasParts.length; i++) {
+ var i;
+ for (i = 2; i < pathAliasParts.length; i++) {
var lessRestrctivePath = pathAliasParts.slice(0, i).join('/');
if (isSiteHostPath(aliasDomain, lessRestrctivePath)) {
aliasPath = lessRestrctivePath;
@@ -5528,10 +5529,8 @@ if (typeof Piwik !== 'object') {
var hasDomainAliasAlready = false, i;
for (i in configHostsAlias) {
- var configHostAliasDomain = domainFixup(String(configHostsAlias[i]));
-
if (Object.prototype.hasOwnProperty.call(configHostsAlias, i)
- && isSameHost(domainAlias, configHostAliasDomain)) {
+ && isSameHost(domainAlias, domainFixup(String(configHostsAlias[i])))) {
hasDomainAliasAlready = true;
if (!configCookiePath) {