X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-filter.js;h=22aeb2046b9eccbe9c0136bdc05d07a69f347895;hb=79df7635c4cf890fdb06683a824d212b64a4a9bf;hp=b8780dada369da39d9176d714b10ca71580ff52d;hpb=8b8a29b20501938b24b76fb02a29c7b0d609d3b6;p=mkws-moved-to-github.git diff --git a/src/mkws-filter.js b/src/mkws-filter.js index b8780da..22aeb20 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -6,7 +6,7 @@ function filterSet(team) { var that = {}; that.toJSON = function() { - return $.toJSON(m_list); + return mkws.$.toJSON(m_list); }; that.add = function(filter) { @@ -45,9 +45,9 @@ function filterSet(team) { for (var i in m_list) { var filter = m_list[i]; if (matchFn(filter)) { - m_team.log("removeMatching() removing filter " + $.toJSON(filter)); + m_team.log("removeMatching: removing filter " + mkws.$.toJSON(filter)); } else { - m_team.log("removeMatching() keeping filter " + $.toJSON(filter)); + m_team.log("removeMatching: keeping filter " + mkws.$.toJSON(filter)); newList.push(filter); } }