-
Notifications
You must be signed in to change notification settings - Fork 24
keys
larukedi edited this page Dec 15, 2014
·
1 revision
Usage: $l.keys.keyName(keyname)
console.log($l.keys.keyName(13));
// returns 'enter'Usage: $l.keys.assign({target: target, key: key, shift: shift, ctrl: ctrl, alt: alt, disableInputs: disableInputs, fnc: fnc})
$l.keys.assign({
target: document,
key: 'f7',
fnc: function() { alert('pressed.'); }
});