From b74bf4630c84387159714178e3544171907480af Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 23 Apr 2014 15:24:29 +0100 Subject: [PATCH] filterSet factory accepts a team argument and stashes it for logging. --- src/mkws-filter.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/mkws-filter.js b/src/mkws-filter.js index 290b0d0..877e8ff 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -1,8 +1,10 @@ // 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; }; @@ -16,9 +18,9 @@ function filterSet() { 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); } } -- 1.7.10.4