Sha256: d938175f71ab2690203c7b59ef8e0bbc83ea88d3a567ae7432124743265480cc
Contents?: true
Size: 762 Bytes
Versions: 24
Compression:
Stored size: 762 Bytes
Contents
//>>excludeStart("exclude", pragmas.exclude); define([ "shoestring" ], function(){ //>>excludeEnd("exclude"); /** * Get the children of the current collection. * @return shoestring * @this shoestring */ shoestring.fn.children = function(){ //>>includeStart("development", pragmas.development); if( arguments.length > 0 ){ shoestring.error( 'children-selector' ); } //>>includeEnd("development"); var ret = [], childs, j; this.each(function(){ childs = this.children; j = -1; while( j++ < childs.length-1 ){ if( shoestring.inArray( childs[ j ], ret ) === -1 ){ ret.push( childs[ j ] ); } } }); return shoestring(ret); }; //>>excludeStart("exclude", pragmas.exclude); }); //>>excludeEnd("exclude");
Version data entries
24 entries across 24 versions & 1 rubygems