This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var currentPos = 0; | |
| var code = "angel"; | |
| var codeLength = code.length; | |
| var proceed = false; | |
| var lastKeysPressed = new Array(codeLength); | |
| $(document).keyup(function(e) { | |
| lastKeysPressed[currentPos%codeLength] = String.fromCharCode(e.keyCode).toLowerCase(); | |
| currentPos++; | |