Fix JS error tracking

pull/412/merge
Thibaut Courouble 9 years ago
parent 740bcc65ba
commit e3abd50406

@ -56,10 +56,11 @@
tags:
mode: if @DOC then 'single' else 'full'
iframe: (window.top isnt window).toString()
shouldSendCallback: ->
if @isInjectionError()
@onInjectionError()
return false
shouldSendCallback: =>
try
if @isInjectionError()
@onInjectionError()
return false
true
dataCallback: (data) ->
try

Loading…
Cancel
Save