meteor-ganalytics icon indicating copy to clipboard operation
meteor-ganalytics copied to clipboard

feature: auto pageview event for every route

Open Obiwarn opened this issue 9 years ago • 1 comments

Obiwarn avatar Feb 02 '16 10:02 Obiwarn

Hi,

You could simply use this, it will apply pageview() to every route registered !

Router.configure({
    onBeforeAction: function() {
        GAnalytics.pageview();
        this.next();
    }
});

LeNiglo avatar Mar 23 '16 18:03 LeNiglo