commit 834b89547bfcfa597db71c63925136236cf147aa
parent 87a8cd0a131225833fa75e15ea41cb22ccb1656f
Author: Florian Dold <florian.dold@gmail.com>
Date: Thu, 17 Nov 2016 23:57:53 +0100
remove debug log
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/src/query.ts b/src/query.ts
@@ -281,7 +281,6 @@ class QueryStreamIndexJoin<T, S> extends QueryStreamBase<JoinResult<T, S>> {
f(true, undefined, tx);
return;
}
- console.log("joining on", this.key(value));
let s = tx.objectStore(this.storeName).index(this.indexName);
let req = s.openCursor(IDBKeyRange.only(this.key(value)));
req.onsuccess = () => {