Skip to content

Commit

Permalink
Merge branch 'emptytr' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Arps committed Nov 23, 2011
2 parents cf456d5 + e83b784 commit 7673a18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IDBStore.js
Expand Up @@ -137,7 +137,7 @@
},

openExistingObjectStore: function(onSuccess, onError){
var emptyTransaction = this.db.transaction([], this.consts.READ_ONLY);
var emptyTransaction = this.db.transaction([this.storeName], this.consts.READ_ONLY);
this.store = emptyTransaction.objectStore(this.storeName);
onSuccess && onSuccess(this.store);
},
Expand Down

0 comments on commit 7673a18

Please sign in to comment.