This file contains hidden or 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
$(function() { | |
unction recordOutboundLink(link, category, action) { | |
try { | |
_gaq.push(['_trackEvent', category , action, 'visiting things']); | |
setTimeout('window.open("' + link.href + '")', 100); | |
} catch(err) { | |
console.error('Error recording outbound link.'); | |
} |
This file contains hidden or 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
/*********************************/ | |
/* by Sampel */ | |
/* */ | |
/* When users come to my portal */ | |
/* if they come to login, then */ | |
/* show the login. The only way */ | |
/* know if the user comes to log */ | |
/* in is with the get parameter */ | |
/* service */ | |
/*********************************/ |