mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Merge pull request #1092 from iconexperience/patch-2
Accidental semicolon in var declaration
This commit is contained in:
commit
c942239032
1 changed files with 1 additions and 1 deletions
|
@ -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({
|
||||
|
|
Loading…
Reference in a new issue