diff options
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | assets/cargohold.js | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -14,3 +14,5 @@ JS Admin Rename Create Alias Delete + +Storage size calculation diff --git a/assets/cargohold.js b/assets/cargohold.js index 2a4ca76..a9cb718 100644 --- a/assets/cargohold.js +++ b/assets/cargohold.js @@ -139,6 +139,8 @@ function listing_update(){ for(let i = 0; i < data.files.length; i++){ listing_add(data.files[i], data.display); } + + element("download-all").innerText = "Download all (" + data.files.length + " Files, " + (total / 1024 /1024) + "MB)"; }; req.open("GET", "listing"); req.send(); |