refatoring: minor changes to PR #13149

This commit is contained in:
Torkel Ödegaard
2018-09-05 12:09:16 +02:00
parent 777010b20b
commit dc236b5063
4 changed files with 15 additions and 8 deletions

View File

@@ -37,12 +37,14 @@ function uploadDashboardDirective(timer, alertSrv, $location) {
};
let i = 0;
let f = files[i];
for (i; f; i++) {
let file = files[i];
while (file) {
const reader = new FileReader();
reader.onload = readerOnload();
reader.readAsText(f);
f = files[i];
reader.readAsText(file);
i += 1;
file = files[i];
}
}