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 <tsteur@users.noreply.github.com>2020-09-01 02:01:06 +0300
committerGitHub <noreply@github.com>2020-09-01 02:01:06 +0300
commit77930f3d6bfc0c710024d1a2838460ffa7061070 (patch)
treeb05d75b7ba2bd76e437f2c85897b906961e1f4b6 /js/piwik.js
parent7d4035b0ec613eb56cdda956ff1e52cb0ff10092 (diff)
Fix build as minified JS version is missing (#16360)
* Fix build as minified JS version is missing * rebuilt piwik.js
Diffstat (limited to 'js/piwik.js')
-rw-r--r--js/piwik.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/piwik.js b/js/piwik.js
index 15e09d11fe..2c5438963a 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -503,8 +503,7 @@ if (typeof window.Matomo !== 'object') {
now = new Date();
var aliasTime = now.getTimeAlias();
- if( (expireDateTime - aliasTime) > 3000) // fix bug #12108
- {
+ if ((expireDateTime - aliasTime) > 3000) {
expireDateTime = aliasTime + 3000;
}