Add allowance for Escape key, in numeric.js

This commit is contained in:
Lance Edgar 2017-05-04 16:33:34 -05:00
parent 7f5dbc422d
commit 2c14dce30d

View file

@ -77,5 +77,10 @@ function key_allowed(event) {
return true;
}
// allow Escape key
if (event.which == 27) {
return true;
}
return false;
}