Tweak GA tracking

This commit is contained in:
Colin McLeod
2016-03-02 10:06:28 -08:00
parent 61c3941618
commit c20439264a

View File

@@ -227,7 +227,7 @@ Route.prototype.match = function(path, params) {
*/ */
function gaTrack(path) { function gaTrack(path) {
if (window.ga) { if (window.ga) {
window.ga('send', 'pageview', { page: path }); window.ga('send', 'pageview', path);
} }
} }