mirror of
https://codeberg.org/metamuffin/abrechenbarkeit.git
synced 2025-01-01 09:14:34 +00:00
11 lines
347 B
JavaScript
11 lines
347 B
JavaScript
|
/// <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()
|
||
|
}
|
||
|
})
|