Vladimir Kotikov created CB-6485:
------------------------------------
Summary: Add pickContact functionality to cordova contacts plugin
Key: CB-6485
URL: https://issues.apache.org/jira/browse/CB-6485
Project: Apache Cordova
Issue Type: Improvement
Components: Plugin Contacts
Reporter: Vladimir Kotikov
It would be great to have a `pickContact` method that launches the Contact
Picker, that allow user to choose single or multiple contacts from device's
address book.
Contact picker should have UI, native to each platform
Sample usage:
{noformat}
navigator.contacts.pickContact(function(contact){
console.log('The following contact has been selected:' +
JSON.stringify(contact));
},function(err){
console.log('Error: ' + err);
});
{noformat}
--
This message was sent by Atlassian JIRA
(v6.2#6252)