From e0a22074b466c4473fc1a1b18fc93b28e8ff95f4 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Thu, 14 Mar 2024 06:08:47 +0100 Subject: [PATCH] remove trailing whitespaces --- radicale/web/internal_data/fn.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/radicale/web/internal_data/fn.js b/radicale/web/internal_data/fn.js index 37a1ee22..02a7ed72 100644 --- a/radicale/web/internal_data/fn.js +++ b/radicale/web/internal_data/fn.js @@ -1291,9 +1291,9 @@ function CreateEditCollectionScene(user, password, collection) { /** * Format bytes to human-readable text. - * + * * @param bytes Number of bytes. - * + * * @return Formatted string. */ function bytesToHumanReadable(bytes, dp=1) { @@ -1304,7 +1304,7 @@ function bytesToHumanReadable(bytes, dp=1) { var i = bytes == 0 ? 0 : Math.floor(Math.log(bytes) / Math.log(1024)); return (bytes / Math.pow(1024, i)).toFixed(dp) * 1 + ' ' + ['b', 'kb', 'mb', 'gb', 'tb'][i]; } - + function main() { // Hide startup loading message