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
1 changed files with 4 additions and 1 deletions

View File

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