mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
18 lines
329 B
CoffeeScript
18 lines
329 B
CoffeeScript
|
define [
|
||
|
"base"
|
||
|
], (App) ->
|
||
|
|
||
|
App.factory "event_tracking", ->
|
||
|
return {
|
||
|
send: (category, action, label, value)->
|
||
|
ga('send', 'event', category, action, label, value)
|
||
|
}
|
||
|
|
||
|
|
||
|
#header
|
||
|
$('.navbar a').on "click", (e)->
|
||
|
href = $(e.target).attr("href")
|
||
|
if href?
|
||
|
ga('send', 'event', 'navigation', 'top menu bar', href)
|
||
|
|