diff options
author | Ruben Rodriguez <ruben@gnu.org> | 2020-03-30 21:34:36 -0400 |
---|---|---|
committer | Ruben Rodriguez <ruben@gnu.org> | 2020-03-30 21:34:36 -0400 |
commit | f8d2fdd802b66767d9bc80685ebdac5740bdb8dc (patch) | |
tree | 35ec47cbe094463d398bd29ad5709977e333c746 /html | |
parent | 525e3a562348813ca11a135cbc640825579af709 (diff) |
Fixed Array.map is not a function
Diffstat (limited to 'html')
-rw-r--r-- | html/preferences_panel/pref.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/preferences_panel/pref.js b/html/preferences_panel/pref.js index debb468..f8d8fdf 100644 --- a/html/preferences_panel/pref.js +++ b/html/preferences_panel/pref.js @@ -139,7 +139,7 @@ }, async swapSelection(list) { let origin = list === Model.lists.black ? "white" : "black"; - await this.addToList(list, ...Array.map( + await this.addToList(list, ...Array.prototype.map.call( document.querySelectorAll(`select#${origin} option:checked`), option => option.value) ); @@ -189,7 +189,7 @@ async deleteSelection() { for (let id of ["black", "white"]) { let selection = document.querySelectorAll(`select#${id} option:checked`); - await Model.lists[id].remove(...Array.map(selection, option => option.value)); + await Model.lists[id].remove(...Array.prototype.map.call(selection, option => option.value)); } this.populateListUI(); this.syncAll(); |