diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-01-18 01:37:30 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-01-18 01:37:30 +0100 |
commit | 82d9c2a7cd2e343866997438d44aa5422190a028 (patch) | |
tree | 3feef2e8b7db1680e42818419195c95946751783 /src/query.ts | |
parent | d4c2f6f6f992c36609c4a029afcb378a7f839ddf (diff) |
access refunds correctly
Diffstat (limited to 'src/query.ts')
-rw-r--r-- | src/query.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/query.ts b/src/query.ts index e45596c66..290d02a2a 100644 --- a/src/query.ts +++ b/src/query.ts @@ -685,6 +685,7 @@ export class QueryRoot { put<T>(store: Store<T>, val: T, keyName?: string): QueryRoot { this.checkFinished(); const doPut = (tx: IDBTransaction) => { + console.log("put into", store.name, "value", val); const req = tx.objectStore(store.name).put(val); if (keyName) { req.onsuccess = () => { |