Cleaning Code, moving functions...

This commit is contained in:
Paolo Arena
2019-03-22 15:32:32 +01:00
parent a2c1a90050
commit dd695a7ce5
56 changed files with 512 additions and 533 deletions

View File

@@ -13,7 +13,7 @@ export let idbKeyval = (() => {
openreq.onupgradeneeded = () => {
// First time setup: create an empty object store
for (mytab of tools.allTables) {
for (mytab of ApiTables.allTables) {
openreq.result.createObjectStore(mytab, { keyPath: '_id' });
}
};