1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-28 12:45:45 +01:00

Reset input

This commit is contained in:
Kyle Spearrin 2017-07-12 14:17:33 -04:00
parent 94e4ea656e
commit 170aac94d2

View File

@ -37,7 +37,8 @@ angular
return; return;
} }
var files = document.getElementById('file').files; var fileEl = document.getElementById('file');
var files = fileEl.files;
if (!files || !files.length) { if (!files || !files.length) {
toastr.error(i18nService.selectFile, i18nService.errorsOccurred); toastr.error(i18nService.selectFile, i18nService.errorsOccurred);
return; return;
@ -54,6 +55,12 @@ angular
}); });
$analytics.eventTrack('Added Attachment'); $analytics.eventTrack('Added Attachment');
toastr.success(i18nService.attachmentSaved); toastr.success(i18nService.attachmentSaved);
// reset file input
// ref: https://stackoverflow.com/a/20552042
fileEl.type = '';
fileEl.type = 'file';
fileEl.value = '';
}, function (err) { }, function (err) {
if (err) { if (err) {
toastr.error(err); toastr.error(err);