mirror of
http://git.sublab.org/cctv-control/
synced 2025-07-02 14:46:07 +02:00
bugfix: form displayes not the latest file from localStorage
This commit is contained in:
parent
dd2f70706c
commit
be506d0047
1 changed files with 4 additions and 1 deletions
|
@ -117,7 +117,10 @@ function saveImage() {
|
||||||
};
|
};
|
||||||
|
|
||||||
fileReader.readAsDataURL(blob);
|
fileReader.readAsDataURL(blob);
|
||||||
showForm();
|
|
||||||
|
fileReader.onloadend = function() {
|
||||||
|
showForm();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}, false);
|
}, false);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue