ckanext-googleanalytics/ckanext/googleanalytics/fanstatic_library/googleanalytics_event_track...

17 lines
509 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) {
ga('send', 'event', 'Resource', 'Download', resource_url);
}
});
}
}
});