Skip to content

Commit

Permalink
removed some debuggery
Browse files Browse the repository at this point in the history
that I forgot to remove while merging
  • Loading branch information
jkoop committed Dec 5, 2023
1 parent 51c58fb commit 8974fa7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion assets/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,6 @@ function formatSize(size) {

function getSizeHTML(size) {
const formattedSize = formatSize(size);
console.log(formattedSize)
if (("" + formattedSize.major).length < 3 && formattedSize.unit != 'B') {
return `${formattedSize.major}<span class="size-minor-part">.${("" + formattedSize.minor + ".0").substring(2, 5 - ("" + formattedSize.major).length)}</span> ${formattedSize.unit}`;
} else if (formattedSize.major != undefined) {
Expand Down

0 comments on commit 8974fa7

Please sign in to comment.