Fixin group storage

This commit is contained in:
Joe Bowser
2009-12-15 10:38:38 -08:00
parent 5ee34b58d7
commit 5fb6aa77b3
5 changed files with 17 additions and 37 deletions
+1 -1
View File
@@ -66,5 +66,5 @@ Contacts.prototype.droidDone = function()
}
PhoneGap.addConstructor(function() {
if(typeof navigator.Contacts == "undefined") navigator.Contacts = new Contacts();
if(typeof navigator.contacts == "undefined") navigator.contacts = new Contacts();
});
+6
View File
@@ -25,6 +25,12 @@ DroidDB.prototype.completeQuery = function(tx_id)
tx.win(r);
}
DroidDB.prototype.fail = function(reason, tx_id)
{
var tx = this.txQueue[tx_id];
tx.fail(reason);
}
var DatabaseShell = function()
{