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:
authormattab <matthieu.aubry@gmail.com>2014-06-26 00:52:07 +0400
committermattab <matthieu.aubry@gmail.com>2014-06-26 00:52:07 +0400
commita0c1fee09a27be27378a82b5eb29c690f03010e4 (patch)
tree3e50af6b08a1191140714a09a4136570162a4f25 /js
parent46b2726ee838478d7483950c1102d8aa1cf8161f (diff)
Rename method to `setCustomRequestProcessing` refs #5384
refs https://github.com/piwik/piwik/pull/325/files
Diffstat (limited to 'js')
-rw-r--r--js/piwik.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/piwik.js b/js/piwik.js
index b34a6a42b6..44e2cdaa8a 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -412,7 +412,7 @@ if (typeof JSON2 !== 'object') {
getAttributionInfo, getAttributionCampaignName, getAttributionCampaignKeyword,
getAttributionReferrerTimestamp, getAttributionReferrerUrl,
setCustomData, getCustomData,
- setCustomRequestContentProcessing,
+ setCustomRequestProcessing,
setCustomVariable, getCustomVariable, deleteCustomVariable,
setDownloadExtensions, addDownloadExtensions,
setDomains, setIgnoreClasses, setRequestMethod, setRequestContentType,
@@ -2453,7 +2453,7 @@ if (typeof Piwik !== 'object') {
* It gets called after request content in form of query parameters string has been prepared and before request content gets sent.
*
* Examples:
- * tracker.setCustomRequestContentProcessing(function(request){
+ * tracker.setCustomRequestProcessing(function(request){
* var pairs = request.split('&');
* var result = {};
* pairs.forEach(function(pair) {
@@ -2465,7 +2465,7 @@ if (typeof Piwik !== 'object') {
*
* @param function customRequestContentProcessingLogic
*/
- setCustomRequestContentProcessing: function (customRequestContentProcessingLogic) {
+ setCustomRequestProcessing: function (customRequestContentProcessingLogic) {
configCustomRequestContentProcessing = customRequestContentProcessingLogic;
},