mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
69 lines
1.7 KiB
HTML
69 lines
1.7 KiB
HTML
|
|
||
|
|
||
|
<!--
|
||
|
//
|
||
|
// Site scripts
|
||
|
//
|
||
|
-->
|
||
|
<script src="/assets/js/bigchain.min.js"></script>
|
||
|
|
||
|
{% if page.js %}
|
||
|
<script src="/assets/js/{{ page.js }}"></script>
|
||
|
{% endif %}
|
||
|
|
||
|
<!--
|
||
|
svg4everybody.js
|
||
|
-->
|
||
|
<script>svg4everybody();</script>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
//
|
||
|
// Google Analytics
|
||
|
//
|
||
|
-->
|
||
|
<script>
|
||
|
(function(window) {
|
||
|
|
||
|
// Google Analytics async snippet
|
||
|
// http://goo.gl/3FPNDx
|
||
|
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};
|
||
|
ga.l=+new Date;
|
||
|
|
||
|
// Create the GA tracker
|
||
|
ga('create', '{{ site.analyticsID }}', 'auto', {siteSpeedSampleRate: 10});
|
||
|
|
||
|
{% if jekyll.environment != 'production' %}
|
||
|
// In non-production mode, simply log GA hits to the console.
|
||
|
// Note, tasks must be set before sending the first hit
|
||
|
ga(function(tracker) {
|
||
|
tracker.set('sendHitTask', function() {
|
||
|
// Throw to stop subsequent tasks.
|
||
|
throw 'Abort tracking in non-production environments.'
|
||
|
});
|
||
|
});
|
||
|
{% endif %}
|
||
|
|
||
|
// Send initial pageview
|
||
|
ga('send', 'pageview');
|
||
|
|
||
|
// Track uncaught errors
|
||
|
window.onerror = function(message, url, line, col) {
|
||
|
var desc = message + ' (line: ' + line + ', url: ' + url + ', col: '
|
||
|
+ col + ')';
|
||
|
|
||
|
ga('send', 'exception', {
|
||
|
exDescription: 'window.onerror: ' + desc,
|
||
|
exFatal: false
|
||
|
});
|
||
|
};
|
||
|
|
||
|
}(window));
|
||
|
</script>
|
||
|
|
||
|
{% if jekyll.environment == "production" %}
|
||
|
<script async src="//www.google-analytics.com/analytics.js"></script>
|
||
|
{% else %}
|
||
|
<script async src="//www.google-analytics.com/analytics_debug.js"></script>
|
||
|
{% endif%}
|