Skip to content

Commit

Permalink
Google analytics script
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscaceres-remote committed Oct 17, 2012
1 parent fb7e4cc commit aa815e1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions scripts/ga.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//Dynamically loads google analytics, but only on github.
//Google analyitics is not allowed on the W3C because of their privacy policy.
if(window.location.host === "responsiveimagescg.github.com"){
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35523667-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
}

0 comments on commit aa815e1

Please sign in to comment.