Created
January 9, 2015 21:01
-
-
Save dealingwith/09f4e72b6305b7ad6dad to your computer and use it in GitHub Desktop.
Someone explain
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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