their own jQuery might reassign the global $ to be a jQuery object
that doesn't have the JSON extension.
var that = {};
that.toJSON = function() {
- return $.toJSON(m_list);
+ return mkws.$.toJSON(m_list);
};
that.add = function(filter) {
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);
}
}