Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
fixed: multiple pinned keyword filters are not colored correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
shiro committed Jan 23, 2014
1 parent c63039e commit 4db7af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/filtering.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ var MT = (function (MT, $) {

// find the filter-item that this pinned filter applies to and
// add the "pinned" class to the "onoff" span
var inputs = "input[value='" + values.join("',[value='") + "']";
var inputs = "input[value='" + values.join("'],input[value='") + "']";
var terst = $(".filter-group[data-name='" + key + "'] " + inputs);
terst.parent().find('.onoff').addClass('pinned');
}
Expand Down

0 comments on commit 4db7af2

Please sign in to comment.