Skip to content

Instantly share code, notes, and snippets.

@angelic
Created January 25, 2012 18:28
Show Gist options
  • Save angelic/1677749 to your computer and use it in GitHub Desktop.
Save angelic/1677749 to your computer and use it in GitHub Desktop.
$ ->
$('.sf-close a').click -> $(this).parent().parent().hide()
# compiles to
(function() {
$(function() {
return $('.sf-close a').click(function() {
return $(this).parent().parent().hide();
});
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment