mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-21 23:30:58 +00:00
file upload asks you if you want to upload
This commit is contained in:
parent
f6cc973cdd
commit
731b083de4
15
src/ui.ts
15
src/ui.ts
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user