remove unused param

This commit is contained in:
Max Bradbury 2020-07-19 20:52:44 +01:00
parent 7e5085516e
commit 0f0da48571
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ async function run() {
const preview = document.getElementById("preview");
preview.style.display = "none";
document.getElementById('image').addEventListener('change', function (e) {
document.getElementById('image').addEventListener('change', function () {
readFile(this, function (e) {
preview.src = e.target.result;
preview.style.display = "initial"