Files can now be moved from the output to the input

This commit is contained in:
n1474335 2017-12-27 02:26:24 +00:00
parent a0aa363203
commit e81122739b
4 changed files with 27 additions and 24 deletions

View file

@ -84,7 +84,7 @@ InputWaiter.prototype.setFile = function(file) {
fileOverlay.style.display = "block";
fileName.textContent = file.name;
fileSize.textContent = file.size.toLocaleString() + " bytes";
fileType.textContent = file.type;
fileType.textContent = file.type || "unknown";
fileLoaded.textContent = "0%";
};