mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Minor fixes.
This commit is contained in:
parent
406175a410
commit
a3af95006b
1 changed files with 1 additions and 2 deletions
|
@ -21,7 +21,7 @@ define [
|
||||||
curCache = _getEventCache()
|
curCache = _getEventCache()
|
||||||
|
|
||||||
if (curCache.hasOwnProperty key)
|
if (curCache.hasOwnProperty key)
|
||||||
_getEventCache()[key]
|
curCache[key]
|
||||||
else
|
else
|
||||||
false
|
false
|
||||||
|
|
||||||
|
@ -36,7 +36,6 @@ define [
|
||||||
|
|
||||||
|
|
||||||
App.factory "event_tracking", ->
|
App.factory "event_tracking", ->
|
||||||
|
|
||||||
return {
|
return {
|
||||||
send: (category, action, label, value)->
|
send: (category, action, label, value)->
|
||||||
ga('send', 'event', category, action, label, value)
|
ga('send', 'event', category, action, label, value)
|
||||||
|
|
Loading…
Reference in a new issue