Bounteous-Inc / youtube-google-analytics

YouTube Google Analytics Embed Tracking
MIT License
232 stars 89 forks source link

Add support for gtag #48

Open abergs opened 6 years ago

abergs commented 6 years ago

Analytics now promotes using the gtag.js API.

Add a forceSyntax/fallback that does this:

//window[_ga]('send', 'event', 'Videos', state, videoUrl);
gtag('event', 'play', {
  'event_category': 'Videos',
  'event_label': videoUrl,
  'event_action': state
});