Skip to content

Commit

Permalink
Merge pull request #1092 from iconexperience/patch-2
Browse files Browse the repository at this point in the history
Accidental semicolon in var declaration
  • Loading branch information
lehni committed Jun 29, 2016
2 parents ab24f92 + f94b4f9 commit c942239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event/Key.js
Expand Up @@ -45,7 +45,7 @@ var Key = new function() {
keyMap = {}, // Map for currently pressed keys
charMap = {}, // key -> char mappings for pressed keys
metaFixMap, // Keys that will not receive keyup events due to Mac bug
downKey; // The key from the keydown event, if it wasn't handled already
downKey, // The key from the keydown event, if it wasn't handled already

// Use new Base() to convert into a Base object, for #toString()
modifiers = new Base({
Expand Down

0 comments on commit c942239

Please sign in to comment.