Github user sarangan12 commented on a diff in the pull request:

    
https://github.com/apache/cordova-plugin-contacts/pull/119#discussion_r58964379
  
    --- Diff: README.md ---
    @@ -354,6 +354,35 @@ for details.
         // remove the contact from the device
         contact.remove(onSuccess,onError);
     
    +### Removing phone number(s) from a saved contact
    +
    +    var myContact = navigator.contacts.create({"displayName": "Test 
User"});
    +    var phoneNumbers = [];
    +
    +    phoneNumbers[0] = new ContactField('work', '768-555-1234', false);
    +    phoneNumbers[1] = new ContactField('mobile', '999-555-5432', true); // 
preferred number
    +    phoneNumbers[2] = new ContactField('home', '203-555-7890', false);
    +
    +    myContact.phoneNumbers = phoneNumbers;
    +    myContact.save(function (contact_obj) {
    --- End diff --
    
    The purpose is to provide a sample snippet. Adding code for find will just 
make it bigger (I already feel it is bigger and could be small) So, I am 
leaving it as such...


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to