1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00

Merge pull request #356 from whiteout-io/dev/WO-927

[WO-927] Clear file input after key import
This commit is contained in:
Tankred Hase 2015-06-12 12:20:10 +02:00
commit 9bf8c758ec

View File

@ -8,6 +8,7 @@ ngModule.directive('keyfileInput', function() {
for (var i = 0; i < e.target.files.length; i++) {
importKey(e.target.files.item(i));
}
elm.val(null); // clear input
});
function importKey(file) {