file upload asks you if you want to upload

This commit is contained in:
Steven Hugg 2019-09-08 16:21:58 -05:00
parent f6cc973cdd
commit 731b083de4
1 changed files with 12 additions and 3 deletions

View File

@ -380,9 +380,18 @@ function handleFileUpload(files: File[]) {
function uploadNextFile() {
var f = files[index++];
if (!f) {
console.log("Done uploading");
updateSelector();
alertInfo("Files uploaded. Use the Project Selector if you want to load an uploaded file as a project.");
console.log("Done uploading", index);
if (index > 2) {
alertInfo("Files uploaded.");
setTimeout(updateSelector, 1000); // TODO: wait for files to upload
} else {
qs['file'] = files[0].name;
if (confirm("Open '" + qs['file'] + "' as project?")) {
gotoNewLocation();
} else {
updateSelector();
}
}
gaEvent('workspace', 'file', 'upload');
} else {
var path = f.name;