Skip to content

Instantly share code, notes, and snippets.

@victusfate
Created May 30, 2011 14:58
Show Gist options
  • Save victusfate/999016 to your computer and use it in GitHub Desktop.
Save victusfate/999016 to your computer and use it in GitHub Desktop.
client side CoffeeScript
msg = "world"
inv = "you"
show_message = (x,y) ->
$('#message').hide().text(x).fadeIn(1000,
-> $('#message').append('!')
)
$('#hint').hide().text(x).fadeIn(0)
$ ->
show_message msg,inv
[inv, msg] = [msg, inv]
$('#message').click ->
show_message msg,inv
[inv, msg] = [msg, inv]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment