Various fixes (#23)

* Sort disks in category order

* Fix saving disk

* Fix keyboard not working after modal

* Make caps lock key on keyboard work, while keeping caps lock on virtual keyboard working too

* Fix delete local storage

* Fix minus key on Mac

* Remove backtick

* Credit.

Co-authored-by: Matthew Hebley <Matthew.Hebley@navico.com>
This commit is contained in:
Will Scullin
2020-04-23 19:47:44 -07:00
committed by GitHub
parent 8af8cdbbca
commit bb6e36f964
6 changed files with 59 additions and 10 deletions

View File

@@ -390,7 +390,7 @@ export function jsonEncode(cur, pretty) {
data[t] = base64_encode(cur.tracks[t]);
} else {
for (var s = 0; s < 0x10; s++) {
data[t][s] = base64_encode(readSector(cur, t));
data[t][s] = base64_encode(readSector(cur, t, s));
}
}
}