diff --git a/README.md b/README.md index 406873d..023d396 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ You can find a simple Arduino example sketch [over here](https://github.com/javl I wrote the code with my 128x64 pixel monochrome OLED display in mind, but it should work with most similar displays. You might need to change some export settings; those are explained in the tool. ### Credit -Initial code by [javl](https://github.com/javl), with aditional code by (in alphabetical order) [akumpf](https://github.com/akumpf), [davidalim](https://github.com/davidalim), [hurricaneJoef](https://github.com/hurricaneJoef), [jochenderwae](https://github.com/jochenderwae), [Sebski123](https://github.com/Sebski123), [whoisnian](https://github.com/whoisnian) and [wiredolphin](https://github.com/wiredolphin). +Initial code by [javl](https://github.com/javl), with aditional code by (in alphabetical order) [akumpf](https://github.com/akumpf), [davidalim](https://github.com/davidalim), [Harry48225](https://github.com/harry48225), [hurricaneJoef](https://github.com/hurricaneJoef), [jochenderwae](https://github.com/jochenderwae), [Sebski123](https://github.com/Sebski123), [whoisnian](https://github.com/whoisnian) and [wiredolphin](https://github.com/wiredolphin). The example sketch is based on code by [Adafruit](https://github.com/adafruit). ### License diff --git a/index.html b/index.html index 4b0fcb5..71eb917 100644 --- a/index.html +++ b/index.html @@ -972,14 +972,14 @@ img.onload = function(){ const fileInputColumnEntry = document.createElement("div"); fileInputColumnEntry.className = "file-input-entry"; - + const fileInputColumnEntryLabel = document.createElement("span"); fileInputColumnEntryLabel.textContent = file.name; const fileInputColumnEntryRemoveButton = document.createElement("button"); fileInputColumnEntryRemoveButton.className = "remove-button"; fileInputColumnEntryRemoveButton.innerHTML = "remove"; - + var canvas = document.createElement("canvas"); var imageEntry = document.createElement("li");