diff options
Diffstat (limited to 'src/manipulation/getAll.js')
-rw-r--r-- | src/manipulation/getAll.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manipulation/getAll.js b/src/manipulation/getAll.js index cc913f29e..a5a0ccaf2 100644 --- a/src/manipulation/getAll.js +++ b/src/manipulation/getAll.js @@ -4,7 +4,7 @@ define( [ function getAll( context, tag ) { - // Support: IE9-11+ + // Support: IE9-11 only // Use typeof to avoid zero-argument method invocation on host objects (#15151) var ret = typeof context.getElementsByTagName !== "undefined" ? context.getElementsByTagName( tag || "*" ) : |