Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. if (evt)
  2. {
  3. var key = (evt.ctrlKey) ? 't' : 'f';
  4. key += (evt.altKey) ? 't' : 'f';
  5. key += (evt.shiftKey) ? 't' : 'f';
  6. try
  7. {
  8. key += String.fromCharCode(_processKeyCodes(evt.keyCode));
  9. }
  10. catch (error)
  11. {
  12. return;
  13. }
  14.  
  15. if(key == 'tff[')
  16. {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement