Skip to content

Instantly share code, notes, and snippets.

@LaurMo
Created October 31, 2013 20:59
Show Gist options
  • Save LaurMo/7257063 to your computer and use it in GitHub Desktop.
Save LaurMo/7257063 to your computer and use it in GitHub Desktop.
Clicking off for mobile.
$(document).off('keyup').on('keyup', function(e) {
view.closeModalOnEsc(e);
});
$('#overlay').show().on('click', function(e) {
view.hideModal(e);
});
$('#overlay').hide().off('click');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment