// Factory function for sets of filters.
-function filterSet() {
- var that = {};
+function filterSet(team) {
+ var m_team = team;
var m_list = [];
+ var that = {};
+
that.list = function() {
return m_list;
};
for (var i in m_list) {
var filter = m_list[i];
if (matchFn(filter)) {
- log("removeMatching() removing filter " + $.toJSON(filter));
+ m_team.log("removeMatching() removing filter " + $.toJSON(filter));
} else {
- log("removeMatching() keeping filter " + $.toJSON(filter));
+ m_team.log("removeMatching() keeping filter " + $.toJSON(filter));
newList.push(filter);
}
}