mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
For the purposes of keyhandling, consider textareas & buttons inputs too
This commit is contained in:
parent
e9b5dfde4d
commit
6b86eb9c0f
@ -127,7 +127,7 @@ function _egw_nodeIsInInput(_node)
|
||||
if ((_node != null) && (_node != document))
|
||||
{
|
||||
var tagName = _node.tagName.toLowerCase();
|
||||
if (tagName == "input" || tagName == "select")
|
||||
if (tagName == "input" || tagName == "select" || tagName == 'textarea' || tagName == 'button')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user