mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
GA tweaks for dev
This commit is contained in:
parent
d5615b96bf
commit
3a5fde7e0c
@ -27,6 +27,17 @@
|
|||||||
// Create the GA tracker
|
// Create the GA tracker
|
||||||
ga('create', 'UA-1441794-2', 'auto', {siteSpeedSampleRate: 10});
|
ga('create', 'UA-1441794-2', '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
|
// Send initial pageview
|
||||||
ga('send', 'pageview');
|
ga('send', 'pageview');
|
||||||
|
|
||||||
@ -34,11 +45,13 @@
|
|||||||
window.onerror = function(message, url, line, col) {
|
window.onerror = function(message, url, line, col) {
|
||||||
var desc = message + ' (line: ' + line + ', url: ' + url + ', col: '
|
var desc = message + ' (line: ' + line + ', url: ' + url + ', col: '
|
||||||
+ col + ')';
|
+ col + ')';
|
||||||
|
|
||||||
ga('send', 'exception', {
|
ga('send', 'exception', {
|
||||||
exDescription: 'window.onerror: ' + desc,
|
exDescription: 'window.onerror: ' + desc,
|
||||||
exFatal: false
|
exFatal: false
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
}(window));
|
}(window));
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user