From 5ee954484100bf6a513d6bbe2a84ada9dcbde830 Mon Sep 17 00:00:00 2001 From: Tim Franssen Date: Mon, 27 Sep 2021 16:02:29 +0200 Subject: [PATCH] Group `.8x?` files together --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index dd61ea0..c1ffce2 100644 --- a/src/index.js +++ b/src/index.js @@ -100,7 +100,7 @@ function attachClickListeners() { function selectFile() { const input = document.createElement('input'); input.type = 'file'; - input.accept = '.8xp,.8xg,.83p,.83g,.82p,.82g,.8xv'; + input.accept = '.8xp,.8xg,.8xv,.83p,.83g,.82p,.82g'; input.addEventListener('change', async c => { file = tifiles.parseFile(await readFile(c.target.files[0])); console.log(file);