Skip to content

Commit

Permalink
Group .8x? files together
Browse files Browse the repository at this point in the history
  • Loading branch information
Timendus authored Sep 27, 2021
1 parent 4d6a439 commit 5ee9544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5ee9544

Please sign in to comment.