do not prevent scrolling events inside of intput elements, this prevents users from entering spaces
This commit is contained in:
parent
2ad5d1d9e7
commit
bb6ddcc3dd
1 changed files with 1 additions and 1 deletions
|
@ -533,7 +533,7 @@ requires
|
|||
bufferTime = time;
|
||||
}
|
||||
focused && $elements[focused].triggerEvent('key_' + key);
|
||||
if (['down', 'space', 'up'].indexOf(key) > -1) {
|
||||
if (['down', 'space', 'up'].indexOf(key) > -1 && !$elements[focused].hasClass('OxInput')) {
|
||||
// prevent chrome from scrolling
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue