Skip to content

Instantly share code, notes, and snippets.

@fixmysync
Created September 8, 2016 20:09
Show Gist options
  • Save fixmysync/2e33d2ab519bcdf39f36c3464b7cf3c2 to your computer and use it in GitHub Desktop.
Save fixmysync/2e33d2ab519bcdf39f36c3464b7cf3c2 to your computer and use it in GitHub Desktop.
//close the modal if the escape key is pressed
$(document).on('keyup', function(e) {
if (e.which === 27) {
modal.clear();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment