aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation/getAll.js
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2015-08-16 09:59:58 +0300
committerOleg Gaidarenko <markelog@gmail.com>2015-09-07 20:03:50 +0300
commit10fdad742a2a6aa9f0e00b3e04fc5264797c53c7 (patch)
tree6b6d7b1375ff88f4bebbfa0703f7b595eb485df9 /src/manipulation/getAll.js
parent7aa46e0df8a673e6b00550bbbbed21eed50108b7 (diff)
downloadjquery-10fdad742a2a6aa9f0e00b3e04fc5264797c53c7.tar.gz
jquery-10fdad742a2a6aa9f0e00b3e04fc5264797c53c7.zip
Build: Update jscs and lint files
Fixes gh-2056
Diffstat (limited to 'src/manipulation/getAll.js')
-rw-r--r--src/manipulation/getAll.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/manipulation/getAll.js b/src/manipulation/getAll.js
index d08470b48..cc913f29e 100644
--- a/src/manipulation/getAll.js
+++ b/src/manipulation/getAll.js
@@ -1,8 +1,9 @@
-define([
+define( [
"../core"
], function( jQuery ) {
function getAll( context, tag ) {
+
// Support: IE9-11+
// Use typeof to avoid zero-argument method invocation on host objects (#15151)
var ret = typeof context.getElementsByTagName !== "undefined" ?
@@ -17,4 +18,4 @@ function getAll( context, tag ) {
}
return getAll;
-});
+} );