You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using multiple GA trackers, you can give each one a name, in which case when you send an event, you need to prefix it with the tracker name:
ga('mytracker.send', 'event', 'Prebid.js Load Time Distribution', dis, bidder, 1, _disibleInteraction);
instead of:
ga('.send', 'event', 'Prebid.js Load Time Distribution', dis, bidder, 1, _disibleInteraction);
(only works for unnamed trackers)
Since Prebid hardcodes this, it fails when using a tracker name. Instead it should pull the tracker prefix from the ga settings, or else allow the user to configure in enableAnalytics
The text was updated successfully, but these errors were encountered:
When using multiple GA trackers, you can give each one a name, in which case when you send an event, you need to prefix it with the tracker name:
ga('mytracker.send', 'event', 'Prebid.js Load Time Distribution', dis, bidder, 1, _disibleInteraction);
instead of:
ga('.send', 'event', 'Prebid.js Load Time Distribution', dis, bidder, 1, _disibleInteraction);
(only works for unnamed trackers)
Since Prebid hardcodes this, it fails when using a tracker name. Instead it should pull the tracker prefix from the ga settings, or else allow the user to configure in
enableAnalytics
The text was updated successfully, but these errors were encountered: