Skip to content

Commit

Permalink
Fix typo in resolver for virtual keycodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Infocatcher committed Sep 3, 2013
1 parent 14e481e commit df0333e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions virtualKeyCodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ function getVKChar(vk) {
case "VK_PERCENT": return "%"; //165
case "VK_AMPERSAND": return "&"; //166
case "VK_UNDERSCORE": return "_"; //167
case "OPEN_PAREN": return "("; //168
case "CLOSE_PAREN": return ")"; //169
case "VK_OPEN_PAREN": return "("; //168
case "VK_CLOSE_PAREN": return ")"; //169
case "VK_ASTERISK": return "*"; //170
case "VK_PLUS": return "+"; //171
case "VK_PIPE": return "|"; //172
Expand Down

0 comments on commit df0333e

Please sign in to comment.