sharedrop/app/services/analytics.js
2015-01-11 17:28:32 +01:00

12 lines
304 B
JavaScript

export default {
hasAnalytics: function () {
return window.ga && typeof window.ga === "function";
},
trackEvent: function (category, action, label, value) {
if (this.hasAnalytics()) {
window.ga('send', 'event', category, action, label, value);
}
}
};