mirror of
https://github.com/moparisthebest/mail
synced 2024-11-25 02:12:17 -05:00
[WO-927] Clear file input after key import
This commit is contained in:
parent
25b9141a5f
commit
e9a8702b39
@ -8,6 +8,7 @@ ngModule.directive('keyfileInput', function() {
|
|||||||
for (var i = 0; i < e.target.files.length; i++) {
|
for (var i = 0; i < e.target.files.length; i++) {
|
||||||
importKey(e.target.files.item(i));
|
importKey(e.target.files.item(i));
|
||||||
}
|
}
|
||||||
|
elm.val(null); // clear input
|
||||||
});
|
});
|
||||||
|
|
||||||
function importKey(file) {
|
function importKey(file) {
|
||||||
|
Loading…
Reference in New Issue
Block a user