blob: 1a494b87ae67b4188922b2a51aa53fade816ef9d (
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.pcode.value += ev.code.substring(5)
if (ev.code == "Enter")
document.forms.buy_product.submit()
}
})
|