all repos — nds-converter @ c49ad1e5149c8ebc9941e186f50cbcef737a4732

A lightweight save converter for NDS and DeSmuME.

disable input while converting
BiRabittoh andronacomarco@gmail.com
Thu, 28 Mar 2024 17:36:01 +0100
commit

c49ad1e5149c8ebc9941e186f50cbcef737a4732

parent

2e720846fea25e571a0381533f1b2a72205bfee5

1 files changed, 2 insertions(+), 0 deletions(-)

jump to
M templates/index.htmltemplates/index.html

@@ -30,9 +30,11 @@ <p><a href="https://github.com/BiRabittoh/nds-converter">Source code</a></p>

<script> async function convertFiles(element) { + element.disabled = true; for (f of element.files) { await convert(f); } + element.disabled = false; } async function convert(file) {