diff --git a/services/web/public/coffee/main/event.coffee b/services/web/public/coffee/main/event.coffee index a0f7a4cedb..2acd79a116 100644 --- a/services/web/public/coffee/main/event.coffee +++ b/services/web/public/coffee/main/event.coffee @@ -6,10 +6,24 @@ define [ return { send: (category, action, label, value)-> ga('send', 'event', category, action, label, value) - event_name = "#{action}-#{category}" - window?.heap?.track?(event_name, {label, value}) + + sendCountly: (key, segmentation) -> + eventData = { key } + eventData.segmentation = segmentation if segmentation? + + Countly.q.push(['add_event', eventData]); } + # App.directive "countlyTrack", () -> + # return { + # restrict: "A" + # scope: false, + # link: (scope, el, attrs) -> + # eventKey = attrs.countlyTrack + # if (eventKey?) + # el.on "click", () -> + # console.log eventKey + # } #header $('.navbar a').on "click", (e)->