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:
authorBas Bosman <github@nazgul.nu>2016-02-23 11:46:00 +0300
committerBas Bosman <github@nazgul.nu>2016-02-23 11:46:00 +0300
commit84e9f2a86f55f2c0908734c1c6bad848185559f7 (patch)
treebe0235ef9040f3b1e607ab0f7c54a0b8d39fcf36 /js
parent5fbbafcc792828dcd4e4badf27f91e9fd23871d7 (diff)
Remove unused variable from piwik.js
Diffstat (limited to '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 64998cd0cd..639f5f05e4 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -4050,8 +4050,7 @@ if (typeof Piwik !== 'object') {
* Log the page view / visit
*/
function logPageView(customTitle, customData) {
- var now = new Date(),
- request = getRequest('action_name=' + encodeWrapper(titleFixup(customTitle || configTitle)), customData, 'log');
+ var request = getRequest('action_name=' + encodeWrapper(titleFixup(customTitle || configTitle)), customData, 'log');
sendRequest(request, configTrackerPause);
}