forked from 0x2620/oxjs
correct docs, add comments
This commit is contained in:
parent
37ab78f05b
commit
6dbdf91259
2 changed files with 3 additions and 1 deletions
|
|
@ -31,6 +31,7 @@ Ox.Keyboard = (function() {
|
|||
}
|
||||
});
|
||||
key = keyNames.join('_');
|
||||
// If no input element has focus, invoke global handlers
|
||||
if (
|
||||
focused === null || (
|
||||
!$focused.hasClass('OxInput')
|
||||
|
|
@ -50,6 +51,7 @@ Ox.Keyboard = (function() {
|
|||
event.preventDefault();
|
||||
}
|
||||
}
|
||||
// If the focused element is not bound globally, invoke element handlers
|
||||
if (focused !== null && bound.indexOf(focused) == -1) {
|
||||
$focused.triggerEvent('key_' + key);
|
||||
// prevent Chrome from scrolling, or going back in history
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue