Skip to content

Instantly share code, notes, and snippets.

@abangratz
Created October 1, 2013 10:42
Show Gist options
  • Save abangratz/6776723 to your computer and use it in GitHub Desktop.
Save abangratz/6776723 to your computer and use it in GitHub Desktop.
usersnap integration for coffeescript
_usersnapconfig =
emailBox: true,
commentBox: true,
apiKey: "YOUR-API-KEY-HERE"
(->
s = document.createElement("script")
s.type = "text/javascript"
s.async = true
s.src = '//api.usersnap.com/usersnap.js'
x = document.getElementsByTagName('head')[0]
x.appendChild(s)
)()
@FloorD
Copy link

FloorD commented Oct 1, 2013

Thank you for updating our list (PHP, Python an RoR) with CoffeeScript! <3
http://usersnap.com/blog/development-workflow/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment