Read project id from the global window var

This commit is contained in:
Alberto Fernández Capel 2018-01-23 15:58:59 +00:00
parent 4ca71fb379
commit 8a1523cc03
2 changed files with 3 additions and 4 deletions

View file

@ -301,8 +301,7 @@ define [
onChange = () ->
updateCount++
projectId = _.last(location.pathname.split("/"))
event_tracking.editingSessionHeartbeat(projectId)
event_tracking.editingSessionHeartbeat()
if updateCount == 100
event_tracking.send 'editor-interaction', 'multi-doc-update'

View file

@ -35,9 +35,9 @@ define [
send: (category, action, label, value)->
ga('send', 'event', category, action, label, value)
editingSessionHeartbeat: _.throttle( (projectId, segmentation = {}) ->
editingSessionHeartbeat: _.throttle( (segmentation = {}) ->
$http({
url: "/editingSession/#{projectId}",
url: "/editingSession/#{window.project_id}",
method: "PUT",
data: segmentation,
headers: {