Explorar el Código

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

master
Ben Kurtovic hace 10 años
padre
commit
a0b3821845
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      main.js

+ 1
- 1
main.js Ver fichero

@@ -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")


Cargando…
Cancelar
Guardar