- 
      
- 
        Save buralex/18a91170feda8c981a536de3d2631e6c to your computer and use it in GitHub Desktop. 
Revisions
- 
        ryanve revised this gist Mar 3, 2017 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewingThis 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,3 @@ document.addEventListener('keyup', function(e) { 9 != e.keyCode || e.metaKey || e.ctrlKey || console.log(document.activeElement) }, false) 
- 
        ryanve revised this gist Oct 27, 2015 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewingThis 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ $(document).on('keyup', function(e) { 9 != e.keyCode || e.metaKey || e.ctrlKey || console.log($(':focus')[0]) }) 
- 
        ryanve revised this gist Mar 10, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewingThis 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ $(document).on('keyup', function(e) { if (9 != e.keyCode || e.metaKey || e.ctrlKey) return console.log($(':focus')[0]) }) 
- 
        ryanve revised this gist Mar 10, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewingThis 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ $(document).on('keydown', function(e) { if (9 != e.keyCode || e.metaKey || e.ctrlKey) return console.log($(':focus')[0]) }) 
- 
        ryanve renamed this gist Mar 10, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewingFile renamed without changes.
- 
        ryanve revised this gist Mar 10, 2015 . No changes.There are no files selected for viewing
- 
        ryanve revised this gist Mar 10, 2015 . No changes.There are no files selected for viewing
- 
        ryanve revised this gist Mar 10, 2015 . No changes.There are no files selected for viewing
- 
        ryanve revised this gist Mar 10, 2015 . No changes.There are no files selected for viewing
- 
        ryanve revised this gist Mar 10, 2015 . No changes.There are no files selected for viewing
- 
        ryanve created this gist Mar 10, 2015 .There are no files selected for viewingThis 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ $(document).on('keydown', function(e) { if (9 != e.keyCode || e.metaKey || e.shiftKey || e.ctrlKey) return console.log($(':focus')[0]) })