Move Session Storage to indexedDB

This commit is contained in:
lilia 2015-04-21 14:11:29 -07:00
parent 20ebc3f890
commit 7eda48f755
3 changed files with 37 additions and 26 deletions

View file

@ -34,6 +34,8 @@
conversations.createIndex("group", "members", { unique: false, multiEntry: true });
conversations.createIndex("type", "type", { unique: false });
var contacts = transaction.db.createObjectStore('contacts');
var preKeys = transaction.db.createObjectStore("preKeys");
var signedPreKeys = transaction.db.createObjectStore("signedPreKeys");