Add allowance for Escape key, in numeric.js
This commit is contained in:
parent
7f5dbc422d
commit
2c14dce30d
|
@ -77,5 +77,10 @@ function key_allowed(event) {
|
|||
return true;
|
||||
}
|
||||
|
||||
// allow Escape key
|
||||
if (event.which == 27) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue