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

    
https://github.com/apache/cordova-plugin-contacts/pull/119#discussion_r58963814
  
    --- 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) {
    +        var contactObjToModify = contact_obj.clone();
    +        contact_obj.remove(function(){
    +            // Note: Do NOT use delete operator. It will break in android.
    +            // delete contactObjToModify.phoneNumbers[1];
    --- End diff --
    
    I would say that if it is know to be broken in Android, just don't include 
the lines here. Leave the note but get rid of the commend out examples.


---
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