mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 22:17:03 +03:00
Found more JSON properties to change into JavaScript camelCase
This commit is contained in:
parent
b9ef8ae2c9
commit
974350ebee
45 changed files with 361 additions and 412 deletions
|
|
@ -104,10 +104,10 @@ export class ContactsPopupView extends AbstractViewPopup {
|
|||
const contacts = this.contactsCheckedOrSelected();
|
||||
if (contacts.length) {
|
||||
let selectorContact = this.selectorContact(),
|
||||
Uids = [],
|
||||
uids = [],
|
||||
count = 0;
|
||||
contacts.forEach(contact => {
|
||||
Uids.push(contact.id());
|
||||
uids.push(contact.id());
|
||||
if (selectorContact && selectorContact.id() === contact.id()) {
|
||||
this.selectorContact(selectorContact = null);
|
||||
}
|
||||
|
|
@ -127,7 +127,7 @@ export class ContactsPopupView extends AbstractViewPopup {
|
|||
}
|
||||
this.reloadContactList();
|
||||
}, {
|
||||
Uids: Uids.join(',')
|
||||
uids: uids.join(',')
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue