Skip to content

Commit

Permalink
Merge pull request #22 from reesericci/patch-1
Browse files Browse the repository at this point in the history
Show .8xv files in the File Picker.
  • Loading branch information
Timendus authored Sep 27, 2021
2 parents 44c3d10 + 5ee9544 commit eb56999
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';
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 eb56999

Please sign in to comment.