Skip to content

Commit ec2324e

Browse files
author
Parashuram N
committed
Merge pull request #7 from alexbosworth/patch-1
Update jquery.indexeddb.js Added direction parameter to eachkey for indexes. [Thnx @alexbosworth ]
2 parents 42f7638 + 26b2797 commit ec2324e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jquery.indexeddb.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -554,8 +554,8 @@
554554

555555
result.index = function(indexName){
556556
return {
557-
"each": function(callback, range){
558-
return indexOp("each", indexName, [callback, range]);
557+
"each": function(callback, range, direction){
558+
return indexOp("each", indexName, [callback, range, direction]);
559559
},
560560
"eachKey": function(callback, range){
561561
return indexOp("eachKey", indexName, [callback, range]);

0 commit comments

Comments
 (0)