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 15:41:15 +0400
committerStevo Slavic <sslavic@gmail.com>2014-06-24 15:41:15 +0400
commit51df3aaf398448d4a61f72a9365458e586afd311 (patch)
tree41d2e2aed8869288fcbc9d3e8516e5bca27826cf /js
parentc747859e6cbedaef471a09d2c808b75d163c3340 (diff)
Moved setCustomRequestContentProcessing code not ot be inbetween getter and setter for custom data
Diffstat (limited to 'js')
-rw-r--r--js/piwik.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/js/piwik.js b/js/piwik.js
index e4c116153c..296f7f63bf 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -2435,6 +2435,15 @@ if (typeof Piwik !== 'object') {
},
/**
+ * Get custom data
+ *
+ * @return mixed
+ */
+ getCustomData: function () {
+ return configCustomData;
+ },
+
+ /**
* Configure function with custom request content processing logic.
* It gets called after request content in form of query parameters string has been prepared and before request content gets sent.
*
@@ -2456,15 +2465,6 @@ if (typeof Piwik !== 'object') {
},
/**
- * Get custom data
- *
- * @return mixed
- */
- getCustomData: function () {
- return configCustomData;
- },
-
- /**
* Appends the specified query string to the piwik.php?... Tracking API URL
*
* @param string queryString eg. 'lat=140&long=100'