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:
authorStevo Slavic <sslavic@gmail.com>2014-06-24 13:09:34 +0400
committerStevo Slavic <sslavic@gmail.com>2014-06-24 13:09:34 +0400
commit02ca49f7ef49e96119702af851d43e31529991db (patch)
tree0f27a8ca9131d0941e3f0bcbc4b1800e6ed3a205 /js
parent53ff607e7889768c20fe4092271b2f8b3b29253e (diff)
Fixed jslint reported issues
Diffstat (limited to 'js')
-rw-r--r--js/piwik.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/piwik.js b/js/piwik.js
index a9745ebada..e4c116153c 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -412,6 +412,7 @@ if (typeof JSON2 !== 'object') {
getAttributionInfo, getAttributionCampaignName, getAttributionCampaignKeyword,
getAttributionReferrerTimestamp, getAttributionReferrerUrl,
setCustomData, getCustomData,
+ setCustomRequestContentProcessing,
setCustomVariable, getCustomVariable, deleteCustomVariable,
setDownloadExtensions, addDownloadExtensions,
setDomains, setIgnoreClasses, setRequestMethod,
@@ -2450,7 +2451,7 @@ if (typeof Piwik !== 'object') {
*
* @param function customRequestContentProcessingLogic
*/
- setCustomRequestContentProcessing: function(customRequestContentProcessingLogic) {
+ setCustomRequestContentProcessing: function (customRequestContentProcessingLogic) {
configCustomRequestContentProcessing = customRequestContentProcessingLogic;
},