mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 19:00:32 -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) {
|
||||
if (data === undefined) {
|
||||
return cache[key];
|
||||
@ -48,7 +47,7 @@ export default {
|
||||
|
||||
// Also use Universal Analytics if it is present
|
||||
if (typeof window.ga !== 'undefined') {
|
||||
onPageChange.on('change', (url, title) => {
|
||||
onPageChange((url, title) => {
|
||||
window.ga('send', 'pageview', {page: url, title: title});
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user