This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(window.jQuery){ | |
//run when window ready | |
$(window).ready(function(){ | |
//detect item click | |
$('body').on('click','.item.file>a',function(e){ | |
var f=$(this); | |
// Test the function, print the download/clicked file to console | |
console.log("Downloading:"+f.context.href); | |
ga('send', 'event', 'File Sharing', 'Download', f.context.href); | |
}) |