X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/src/core/CompositeElementLite-more.js diff --git a/src/core/CompositeElementLite-more.js b/src/core/CompositeElementLite-more.js index 9e516dbd..996e5af9 100644 --- a/src/core/CompositeElementLite-more.js +++ b/src/core/CompositeElementLite-more.js @@ -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; }, - /** - * Clears this composite and adds the elements returned by the passed selector. - * @param {String/Array} els A string CSS selector, an array of elements or an element - * @return {CompositeElement} this - */ - fill : function(els){ - this.elements = []; - this.add(els); - return this; - }, - /** * Returns the first Element * @return {Ext.Element} @@ -56,22 +45,6 @@ Ext.apply(Ext.CompositeElementLite.prototype, { */ contains : function(el){ return this.indexOf(el) != -1; - }, - - /** - * Filters this composite to only elements that match the passed selector. - * @param {String} selector A string CSS selector - * @return {CompositeElement} this - */ - filter : function(selector){ - var els = []; - this.each(function(el){ - if(el.is(selector)){ - els[els.length] = el.dom; - } - }); - this.fill(els); - return this; }, /**