meteor-ganalytics
meteor-ganalytics copied to clipboard
feature: auto pageview event for every route
Hi,
You could simply use this, it will apply pageview() to every route registered !
Router.configure({
onBeforeAction: function() {
GAnalytics.pageview();
this.next();
}
});