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:
Tooru Fujisawa 2015-09-23 18:39:13 +09:00
parent c8e5588008
commit 5d11f2a17c

View File

@ -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) {