17 lines
516 B
JavaScript
17 lines
516 B
JavaScript
// Add Google Analytics Event Tracking to resource download links.
|
|
this.ckan.module('google-analytics', function(jQuery, _) {
|
|
return {
|
|
options: {
|
|
googleanalytics_resource_prefix: ''
|
|
},
|
|
initialize: function() {
|
|
jQuery('a.resource-url-analytics').on('click', function() {
|
|
var resource_url = encodeURIComponent(jQuery(this).prop('href'));
|
|
if (resource_url) {
|
|
_gaq.push(['_trackEvent', 'Resource', 'Download', resource_url]);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|