Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / src / core / CompositeElementLite-more.js
index 9e516db..996e5af 100644 (file)
@@ -1,5 +1,5 @@
 /*!
- * Ext JS Library 3.0.0
+ * Ext JS Library 3.0.3
  * Copyright(c) 2006-2009 Ext JS, LLC
  * licensing@extjs.com
  * http://www.extjs.com/license
@@ -22,17 +22,6 @@ Ext.apply(Ext.CompositeElementLite.prototype, {
         return this;\r
     },\r
     \r
-    /**\r
-    * Clears this composite and adds the elements returned by the passed selector.\r
-    * @param {String/Array} els A string CSS selector, an array of elements or an element\r
-    * @return {CompositeElement} this\r
-    */\r
-    fill : function(els){\r
-        this.elements = [];\r
-        this.add(els);\r
-        return this;\r
-    },\r
-    \r
     /**\r
      * Returns the first Element\r
      * @return {Ext.Element}\r
@@ -56,22 +45,6 @@ Ext.apply(Ext.CompositeElementLite.prototype, {
      */\r
     contains : function(el){\r
         return this.indexOf(el) != -1;\r
-    },\r
-\r
-    /**\r
-    * Filters this composite to only elements that match the passed selector.\r
-    * @param {String} selector A string CSS selector\r
-    * @return {CompositeElement} this\r
-    */\r
-    filter : function(selector){\r
-        var els = [];\r
-        this.each(function(el){\r
-            if(el.is(selector)){\r
-                els[els.length] = el.dom;\r
-            }\r
-        });\r
-        this.fill(els);\r
-        return this;\r
     },
     
     /**\r