11
0
Fork 0
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:
Florian 2014-02-16 03:20:54 +01:00
parent dd2f70706c
commit be506d0047

View file

@ -117,7 +117,10 @@ function saveImage() {
};
fileReader.readAsDataURL(blob);
showForm();
fileReader.onloadend = function() {
showForm();
}
}
}, false);