Sha256: 42259748340b97b40662f74a7eaf147918f84b0ba2325d89385727b2fb34eac6

Contents?: true

Size: 563 Bytes

Versions: 35

Compression:

Stored size: 563 Bytes

Contents

define( [
	"../core"
], function( jQuery ) {

"use strict";

function getAll( context, tag ) {

	// Support: IE <=9 - 11 only
	// Use typeof to avoid zero-argument method invocation on host objects (#15151)
	var ret = typeof context.getElementsByTagName !== "undefined" ?
			context.getElementsByTagName( tag || "*" ) :
			typeof context.querySelectorAll !== "undefined" ?
				context.querySelectorAll( tag || "*" ) :
			[];

	return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
		jQuery.merge( [ context ], ret ) :
		ret;
}

return getAll;
} );

Version data entries

35 entries across 35 versions & 3 rubygems

Version Path
loco-rails-1.4.0 test/dummy/vendor/assets/bower_components/jquery/src/manipulation/getAll.js
loco-rails-1.3.3 test/dummy/vendor/assets/bower_components/jquery/src/manipulation/getAll.js
trusty-cms-2.0.25 app/assets/bower_components/jquery/src/manipulation/getAll.js
loco-rails-1.3.2 test/dummy/vendor/assets/bower_components/jquery/src/manipulation/getAll.js
trusty-cms-2.0.24 app/assets/bower_components/jquery/src/manipulation/getAll.js
loco-rails-1.3.1 test/dummy/vendor/assets/bower_components/jquery/src/manipulation/getAll.js
loco-rails-1.3.0 test/dummy/vendor/assets/bower_components/jquery/src/manipulation/getAll.js
trusty-cms-2.0.23 app/assets/bower_components/jquery/src/manipulation/getAll.js
loco-rails-1.0.2 test/dummy/vendor/assets/bower_components/jquery/src/manipulation/getAll.js
loco-rails-1.0.1 test/dummy/vendor/assets/bower_components/jquery/src/manipulation/getAll.js
try_api-0.0.10 app/assets/javascripts/try_api/bower_components/jquery/src/manipulation/getAll.js
try_api-0.0.9 app/assets/javascripts/try_api/bower_components/jquery/src/manipulation/getAll.js
try_api-0.0.8 app/assets/javascripts/try_api/bower_components/jquery/src/manipulation/getAll.js
try_api-0.0.7 app/assets/javascripts/try_api/bower_components/jquery/src/manipulation/getAll.js
try_api-0.0.6 app/assets/javascripts/try_api/bower_components/jquery/src/manipulation/getAll.js