mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-13 20:00:05 +01:00
Small fix for FireFox; Ref: Issue #7
This commit is contained in:
2
dist/image-sequencer.js
vendored
2
dist/image-sequencer.js
vendored
@@ -184381,7 +184381,7 @@ module.exports = function ImageSelect(options) {
|
||||
// we should trigger "load" event here
|
||||
|
||||
image = new Image();
|
||||
image.src = event.target.result;
|
||||
image.src = e.target.result;
|
||||
document.sequencer_image = image;
|
||||
el.html(image); // may be redundant
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ module.exports = function ImageSelect(options) {
|
||||
// we should trigger "load" event here
|
||||
|
||||
image = new Image();
|
||||
image.src = event.target.result;
|
||||
image.src = e.target.result;
|
||||
document.sequencer_image = image;
|
||||
el.html(image); // may be redundant
|
||||
|
||||
|
||||
Reference in New Issue
Block a user