[FIX] web_analytics: track pageview

bzr revid: chs@openerp.com-20130117175809-ztptqe9y756hx8kk
This commit is contained in:
Christophe Simonis 2013-01-17 18:58:09 +01:00
parent bd89e53e23
commit 3e3edf0ce3
1 changed files with 2 additions and 0 deletions

View File

@ -142,6 +142,7 @@ openerp.web_analytics = function(instance) {
'action': state.view_type,
'label': url,
});
this._push_pageview(url);
}
},
/*
@ -187,6 +188,7 @@ openerp.web_analytics = function(instance) {
'action': action.name || action.tag,
'label': url,
});
t._push_pageview(url);
return this._super.apply(this, arguments);
},
});