diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-05-11 20:48:06 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-05-11 20:48:06 -0400 |
| commit | 6fe417cd64090f028c0d07b799620eb94637bf33 (patch) | |
| tree | afacc07129c5367ecf4f263db0b3509044f4ae13 /print/resources | |
| parent | 8f320525e97ad049dbe360df45aa7e7f02673196 (diff) | |
fix icon selection on firefox
Diffstat (limited to 'print/resources')
| -rw-r--r-- | print/resources/inkstitch.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print/resources/inkstitch.js b/print/resources/inkstitch.js index daa2cf4b..67690df2 100644 --- a/print/resources/inkstitch.js +++ b/print/resources/inkstitch.js @@ -300,7 +300,7 @@ $(function() { // Logo $('#logo-picker').change(function(e) { - var file = e.originalEvent.srcElement.files[0]; + var file = e.originalEvent.currentTarget.files[0]; var reader = new FileReader(); reader.onloadend = function() { var data = reader.result; |
