Skip to content

Instantly share code, notes, and snippets.

@maxbeizer
Created June 13, 2013 15:00
Show Gist options
  • Save maxbeizer/5774396 to your computer and use it in GitHub Desktop.
Save maxbeizer/5774396 to your computer and use it in GitHub Desktop.
command enter to send message
$(document).on "keydown", "#new_message textarea", (e) ->
$(this).parents("form").submit() if e.keyCode is 13 and (e.metaKey or e.ctrlKey)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment