Ignore keyboard events from input fields
This commit is contained in:
parent
d3a2c586f0
commit
b10dcd2b95
1 changed files with 3 additions and 0 deletions
|
@ -432,6 +432,9 @@ function rcube_tasklist_ui(settings)
|
|||
}
|
||||
})
|
||||
.on('keydown', '.taskhead', function(e) {
|
||||
if (e.target.nodeName == 'INPUT' && e.target.type == 'text')
|
||||
return true;
|
||||
|
||||
var inc = 1;
|
||||
switch (e.keyCode) {
|
||||
case 13: // Enter
|
||||
|
|
Loading…
Add table
Reference in a new issue