MCPcopy Create free account
hub / github.com/nwutils/nw-sample-apps / getAll

Function getAll

camera/jquery.js:4992–5000  ·  view source on GitHub ↗
( context, tag )

Source from the content-addressed store, hash-verified

4990}
4991
4992function getAll( context, tag ) {
4993 var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) :
4994 context.querySelectorAll ? context.querySelectorAll( tag || "*" ) :
4995 [];
4996
4997 return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
4998 jQuery.merge( [ context ], ret ) :
4999 ret;
5000}
5001
5002// Support: IE >= 9
5003function fixInput( src, dest ) {

Callers 1

jquery.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected