Roo/util/MixedCollection.js
authoredward <edward@roojs.com>
Mon, 9 Nov 2015 06:00:08 +0000 (14:00 +0800)
committeredward <edward@roojs.com>
Mon, 9 Nov 2015 06:00:08 +0000 (14:00 +0800)
Roo/util/MixedCollection.js

index 7b90290..86cd8b6 100644 (file)
@@ -485,15 +485,10 @@ mc.add(otherEl);
      * @param {Object} scope (optional) The scope of the function (defaults to this) 
      * @return {MixedCollection} The new filtered collection
      */
-    filterBy : function(fn, scope, anyMatch){
-        Roo.log(fn);
-        Roo.log(scope);
+    filterBy : function(fn, scope){
         var r = new Roo.util.MixedCollection();
-        Roo.log(r);
         r.getKey = this.getKey;
-        Roo.log(r.getKey);
         var k = this.keys, it = this.items;
-        Roo.log([k, it]);
         for(var i = 0, len = it.length; i < len; i++){
             if(fn.call(scope||this, it[i], k[i])){
                                r.add(k[i], it[i]);