You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/website/source/assets/javascripts/analytics.js

10 lines
254 B

document.addEventListener('DOMContentLoaded', function() {
track('.downloads .download a', function(el) {
return {
event: 'Download',
category: 'Button',
label: 'Packer | v' + el.href.match(/\/(\d+\.\d+\.\d+)\//)[1]
}
})
})