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:
authorrobocoder <anthon.pang@gmail.com>2011-09-24 21:08:19 +0400
committerrobocoder <anthon.pang@gmail.com>2011-09-24 21:08:19 +0400
commit54e0b6c3ee842764ae3dcb9949860ac4111edc88 (patch)
tree94d4e62d2e48ff1b60b340d57ffbcdfa758044ef /plugins/ExamplePlugin/templates
parentb6a6bbc28cf3280856b3b6c948fad88f29c7183f (diff)
fixes #2679 - use de facto standard "callback" for the JSONP callback parameter name
git-svn-id: http://dev.piwik.org/svn/trunk@5216 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/ExamplePlugin/templates')
-rw-r--r--plugins/ExamplePlugin/templates/piwikDownloads.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExamplePlugin/templates/piwikDownloads.tpl b/plugins/ExamplePlugin/templates/piwikDownloads.tpl
index 30cb40c446..910a81f213 100644
--- a/plugins/ExamplePlugin/templates/piwikDownloads.tpl
+++ b/plugins/ExamplePlugin/templates/piwikDownloads.tpl
@@ -11,7 +11,7 @@
+"&idSite=7&period="+piwik.period+"&date="+broadcast.getValueFromUrl('date')
+"&token_auth=anonymous&format=json",
dataType: 'jsonp',
- jsonp: 'jsoncallback',
+ jsonp: 'callback',
success: function(data) {
$('.piwikDownloadCount_cnt').html(data.value);
}