Skip to content

Commit

Permalink
Remove instance of legacy shorthand function syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dstillman committed Mar 28, 2017
1 parent 3a8357c commit 7b7b268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome/content/zotero/bindings/tagselector.xml
Expand Up @@ -541,7 +541,7 @@
<body><![CDATA[
return Zotero.spawn(function* () {
if (type == 'setting') {
if (ids.some(function (val) val.split("/")[1] == 'tagColors')) {
if (ids.some(val => val.split("/")[1] == 'tagColors')) {
yield this.refresh(true);
}
return;
Expand Down

0 comments on commit 7b7b268

Please sign in to comment.