mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-06 06:24:12 +01:00
Fix silliness in last commit.
This commit is contained in:
@@ -636,7 +636,7 @@ var Option = Class("Option", {
|
||||
if (invert) {
|
||||
let keepValues = this.value.filter(function (item) !set.has(this, item), set(values));
|
||||
let addValues = values.filter(function (item) !set.has(this, item), set(this.value));
|
||||
return this.parse(addValues.concat(keepValues));
|
||||
return addValues.concat(keepValues);
|
||||
}
|
||||
return values;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user