Bläddra i källkod

kB -> KB, since we're using 1024 instead of 1000.

master
Ben Kurtovic 10 år sedan
förälder
incheckning
a0b3821845
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      main.js

+ 1
- 1
main.js Visa fil

@@ -566,7 +566,7 @@ function hook_addtolist() {
function hook_export() {
chrome.storage.sync.getBytesInUse(null, function(usage) {
usage = Math.round(usage / 1024 * 10) / 10;
usage += " kB / " + chrome.storage.sync.QUOTA_BYTES / 1024 + " kB";
usage += " KB / " + chrome.storage.sync.QUOTA_BYTES / 1024 + " KB";
$("#dialog td")
.append($("<hr>")
.css("border", "none")


Laddar…
Avbryt
Spara