Merging Fil's contact changes with Bryce's Plugins

This commit is contained in:
macdonst
2010-09-10 15:09:40 -04:00
parent 1c0de5ad8d
commit 633100a3ce
5 changed files with 772 additions and 269 deletions
+5 -1
View File
@@ -101,7 +101,11 @@
function get_contacts()
{
navigator.ContactManager.getAllContacts(count_contacts, fail, null);
var obj = new Contact();
var name = new ContactName();
name.givenName = '';
obj.name = name;
navigator.contacts.find(obj, count_contacts, fail);
}
function count_contacts(contacts)