mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
Bug 1207494 - Part 5: Remove use of expression closure from dom/contacts/. r=reuben
--HG-- extra : commitid : 2TnyxsHLwtk extra : rebase_source : 8de24c312c476fa849767dc2e4fbfe57a37dcc53
This commit is contained in:
parent
c8e5588008
commit
5d11f2a17c
@ -1039,7 +1039,7 @@ ContactDB.prototype = {
|
||||
contactsArray.push(aContacts[i]);
|
||||
}
|
||||
|
||||
let contactIdsArray = contactsArray.map(function(el) el.id);
|
||||
let contactIdsArray = contactsArray.map(el => el.id);
|
||||
|
||||
// save contact ids in cache
|
||||
this.newTxn("readwrite", SAVED_GETALL_STORE_NAME, function(txn, store) {
|
||||
|
Loading…
Reference in New Issue
Block a user