Skip to content

Instantly share code, notes, and snippets.

@chrismendis
Created February 11, 2013 15:17
Show Gist options
  • Save chrismendis/4755038 to your computer and use it in GitHub Desktop.
Save chrismendis/4755038 to your computer and use it in GitHub Desktop.
Preventing the user from tabbing forward
preventFocusContinuation: (ev) ->
if ev.which == 9 and not ev.shiftKey
ev.preventDefault()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment