Guest User

Untitled

a guest
Jun 25th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. (function(){
  2. var s = [38,38,40,40,37,39,37,39,66,65], p = 0, t = null, $w = $(window);
  3. var c = function(e){
  4. clearTimeout(t);
  5. if(p == s.length-1) {
  6. p = 0;
  7. $w.trigger('konami');
  8. } else if(e.keyCode == s[p]) {
  9.  
  10. ++p;
  11. t = setTimeout(function(){ p = 0; }, 2000);
  12. } else {
  13. p = 0;
  14. }
  15. }
  16.  
  17. $w.keyup(c);
  18. })();
Add Comment
Please, Sign In to add comment