cartodb/lib/assets/javascripts/builder/helpers/ga-pusher.js
2020-06-15 10:58:47 +08:00

22 lines
467 B
JavaScript

/**
* Send events to Google Analytics if it is available
* - https://developers.google.com/analytics/devguides/collection/analyticsjs/sending-hits
*
*/
var GAPusher = function (opts) {
var ga = window.ga;
opts = opts || {};
if (ga) {
ga(opts.eventName || 'send', {
hitType: opts.hitType,
eventCategory: opts.eventCategory,
eventAction: opts.eventAction,
eventLabel: opts.eventLabel
});
}
};
module.exports = GAPusher;