Will check new implementation matches old.
that.toJSON = function() {
return $.toJSON(m_list);
- }
+ };
that.add = function(filter) {
m_list.push(filter);
}
}
return false;
- }
+ };
that.pp2filter = function() {
+ var OLD = that.OLD_pp2filter();
+ var NEW = that.NEW_pp2filter();
+ if (OLD !== NEW) {
+ alert("pp2filter(): OLD[" + OLD + "] !== NEW[" + NEW + "]");
+ }
+ return OLD;
+ };
+
+ that.OLD_pp2filter = function() {
var res = "";
for (var i in m_list) {
}
return res;
- }
+ };
+
+ that.NEW_pp2filter = function() {
+ return that.OLD_pp2filter();
+ };
that.pp2limit = function(initial) {
var res = initial || "";
}
return res;
- }
+ };
return that;