mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 04:34:13 -06:00
FIX: GA Universal tracking had a bug
This commit is contained in:
parent
627ef54efe
commit
c9cb5a5b79
@ -25,7 +25,6 @@ export default {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
router.transientCache = function(key, data, count) {
|
router.transientCache = function(key, data, count) {
|
||||||
if (data === undefined) {
|
if (data === undefined) {
|
||||||
return cache[key];
|
return cache[key];
|
||||||
@ -48,7 +47,7 @@ export default {
|
|||||||
|
|
||||||
// Also use Universal Analytics if it is present
|
// Also use Universal Analytics if it is present
|
||||||
if (typeof window.ga !== 'undefined') {
|
if (typeof window.ga !== 'undefined') {
|
||||||
onPageChange.on('change', (url, title) => {
|
onPageChange((url, title) => {
|
||||||
window.ga('send', 'pageview', {page: url, title: title});
|
window.ga('send', 'pageview', {page: url, title: title});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user