Skip to content
This repository has been archived by the owner on Jun 1, 2021. It is now read-only.

Commit

Permalink
Ignore jumps while the alt key is pressed
Browse files Browse the repository at this point in the history
  • Loading branch information
joelpurra committed Apr 23, 2014
1 parent 6a71510 commit 53252f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/bespoke-jumpy.js
Expand Up @@ -106,7 +106,7 @@
digit,
index;

if(e.metaKey || e.ctrlKey || e.shiftKey) {
if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) {
return false;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/bespoke-jumpy.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/bespoke-jumpy.js
Expand Up @@ -100,7 +100,7 @@
digit,
index;

if(e.metaKey || e.ctrlKey || e.shiftKey) {
if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) {
return false;
}

Expand Down

0 comments on commit 53252f3

Please sign in to comment.