diff options
| author | Stephen Blott | 2014-12-21 11:58:01 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2014-12-21 11:58:01 +0000 | 
| commit | b0c9a764c77a451726049a79a19a0fa28ae0b30c (patch) | |
| tree | 1099843afcbf338abdec412bc895460ae43a8a9f /background_scripts/exclusions.coffee | |
| parent | 98fd49a6cfe660c363aecb6ebe0a4cb69342808d (diff) | |
| download | vimium-b0c9a764c77a451726049a79a19a0fa28ae0b30c.tar.bz2 | |
Exclusion; unique keys.
Diffstat (limited to 'background_scripts/exclusions.coffee')
| -rw-r--r-- | background_scripts/exclusions.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/exclusions.coffee b/background_scripts/exclusions.coffee index 12d86f41..f2dd14c8 100644 --- a/background_scripts/exclusions.coffee +++ b/background_scripts/exclusions.coffee @@ -31,7 +31,7 @@ root.Exclusions = Exclusions =        return rule unless rule.passKeys      if matching.length        pattern: (rule.pattern for rule in matching).join " | " # Not used; for debugging only. -      passKeys: (rule.passKeys for rule in matching).join "" +      passKeys: Utils.uniqueCharacters (rule.passKeys for rule in matching).join ""      else        null  | 
