blob: 46f89617d271cc50ecb9a252556652ad59644d7d (
plain)
1
2
3
4
5
6
7
8
9
10
|
/// <reference lib="dom" />
document.addEventListener("keypress", ev => {
if (!(document.activeElement instanceof HTMLInputElement)) {
if (ev.code.startsWith("Digit"))
document.forms.buy_product.product.value += ev.code.substring(5)
if (ev.code == "Enter")
document.forms.buy_product.submit()
}
})
|