removed some editor actions sent to google analytics as we are sending too much data

This commit is contained in:
Henry Oswald 2015-10-27 23:28:54 +00:00
parent 6c75a6dbe5
commit 2d03410c42
3 changed files with 0 additions and 15 deletions

View file

@ -117,9 +117,6 @@ block content
};
window.aceFingerprint = "#{fingerprint(jsPath + 'ace/ace.js')}"
script(type='text/javascript').
ga('send', 'event', 'editor-interaction', 'editor-opened')
- locals.suppressDefaultJs = true
- var pdfPath = 'libs/pdfjs-1.0.1040/pdf.worker.js'

View file

@ -78,10 +78,6 @@ define [], () ->
@$scope.$apply () =>
@$scope.connection.reconnecting = false
setTimeout(=>
ga('send', 'event', 'editor-interaction', 'disconnect')
, 2000)
if !$scope.connection.forced_disconnect and !@userIsInactive
@startAutoReconnectCountdown()

View file

@ -118,20 +118,12 @@ define [
return path
compileCount = 0
$scope.recompile = (options = {}) ->
return if $scope.pdf.compiling
$scope.pdf.compiling = true
ide.$scope.$broadcast("flush-changes")
if !options.isAutoCompile
compileCount++
if compileCount == 1
event_tracking.send('editor-interaction', 'single-compile')
else if compileCount == 3
event_tracking.send('editor-interaction', 'multi-compile')
options.rootDocOverride_id = getRootDocOverride_id()
sendCompileRequest(options)