Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. // ESC Keypress closes window (27 = esc)
  2. $(document).on('keyup',function(e){
  3. if(e.keyCode==27){ $('.previewfile-overlay').click(); }
  4. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement