Skip to content

Instantly share code, notes, and snippets.

@dealingwith
Created January 9, 2015 21:01
Show Gist options
  • Save dealingwith/09f4e72b6305b7ad6dad to your computer and use it in GitHub Desktop.
Save dealingwith/09f4e72b6305b7ad6dad to your computer and use it in GitHub Desktop.
Someone explain
#ok
setTimeout(->
analytics.track 'Time on Site',
category: 'site',
label: 'seconds',
value: 60
, 60000)
#ok
setTimeout(
->
analytics.track 'Time on Site',
category: 'site',
label: 'seconds',
value: 60
, 60000)
#ok
setTimeout ->
analytics.track 'Time on Site',
category: 'site',
label: 'seconds',
value: 60
, 60000
#not ok
setTimeout
->
analytics.track 'Time on Site',
category: 'site',
label: 'seconds',
value: 60
, 60000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment