mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
- move mixpanel code to pre-existing analytics file. - also track when people navigate in the docs - remove 'preview.meteor.com' alias
37 lines
1.8 KiB
HTML
37 lines
1.8 KiB
HTML
<head>
|
|
<script type="text/javascript">
|
|
if (document.location.host.match(/^docs\.meteor\.com(:80)?$/)) {
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-30093278-2']);
|
|
_gaq.push(['_setDomainName', 'preview.meteor.com']);
|
|
_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);
|
|
})();
|
|
|
|
|
|
// Mixpanel. Must be loaded even in devel mode or else mixpanel.track (etc) fails.
|
|
(function(c,a){var b,d,h,e;b=c.createElement("script");b.type="text/javascript";
|
|
b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
|
|
'//api.mixpanel.com/site_media/js/api/mixpanel.2.js';d=c.getElementsByTagName("script")[0];
|
|
d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
|
|
var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
|
|
Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
|
|
f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
|
|
'track_forms','register','register_once','unregister','identify','name_tag',
|
|
'set_config','people.set','people.increment'];for(e=0;e<h.length;e++)d(g,h[e]);
|
|
a._i.push([b,c,f])};a.__SV=1.1;window.mixpanel=a})(document,window.mixpanel||[]);
|
|
mixpanel.init("ccbcd7e4e53fc175e04474e70961cf45");
|
|
} else {
|
|
mixpanel = {
|
|
track: function () {
|
|
// console.log("track", _.toArray(arguments));
|
|
}
|
|
};
|
|
}
|
|
</script>
|
|
</head>
|