Skip to content

Commit

Permalink
Update main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex313031 authored Jun 8, 2022
1 parent ffb9bac commit f23b1b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function initInfo() {
language.textContent = navigator.language;

var copyright = document.querySelector('#copyright-list');
copyright.textContent = "Copyright (c) 2022 Alex313031 *Chancie Wancie Edition*";
copyright.textContent = "Copyright (c) 2022 Alex313031";

var acceptLanguages = document.querySelector('#accept-languages');
chrome.i18n.getAcceptLanguages(function(languages) {
Expand Down Expand Up @@ -146,7 +146,7 @@ function updateStorage() {
externalStorageUnits.innerHTML = '';
for (var i = 0; i < storageInfo.length; i++) {
var storageUnitHtml = '<div>' + storageInfo[i].name +
(storageInfo[i].capacity ? ' - ' + formatBytes(storageInfo[i].capacity) : '') + '</div>';
(storageInfo[i].capacity ? ' Total Size: ' + formatBytes(storageInfo[i].capacity) : '') + '</div>';
if (storageInfo[i].type === 'removable') {
externalStorageUnits.innerHTML += storageUnitHtml;
} else {
Expand Down

0 comments on commit f23b1b2

Please sign in to comment.