|
24 | 24 | return new jQuery.fn.init( selector, context ); |
25 | 25 | }, |
26 | 26 |
|
27 | | - // Support: Android<4.1 |
| 27 | + // Support: Android <=4.0 only |
28 | 28 | // Make sure we trim BOM and NBSP |
29 | 29 | rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, |
30 | 30 |
|
@@ -262,7 +262,7 @@ jQuery.extend( { |
262 | 262 | return obj + ""; |
263 | 263 | } |
264 | 264 |
|
265 | | - // Support: Android<4.0 (functionish RegExp) |
| 265 | + // Support: Android <=2.3 only (functionish RegExp) |
266 | 266 | return typeof obj === "object" || typeof obj === "function" ? |
267 | 267 | class2type[ toString.call( obj ) ] || "object" : |
268 | 268 | typeof obj; |
@@ -305,7 +305,7 @@ jQuery.extend( { |
305 | 305 | return obj; |
306 | 306 | }, |
307 | 307 |
|
308 | | - // Support: Android<4.1 |
| 308 | + // Support: Android <=4.0 only |
309 | 309 | trim: function( text ) { |
310 | 310 | return text == null ? |
311 | 311 | "" : |
@@ -334,7 +334,7 @@ jQuery.extend( { |
334 | 334 | return arr == null ? -1 : indexOf.call( arr, elem, i ); |
335 | 335 | }, |
336 | 336 |
|
337 | | - // Support: Android<4.1, PhantomJS<2 |
| 337 | + // Support: Android <=4.0 only, PhantomJS 1 only |
338 | 338 | // push.apply(_, arraylike) throws on ancient WebKit |
339 | 339 | merge: function( first, second ) { |
340 | 340 | var len = +second.length, |
@@ -458,7 +458,7 @@ function( i, name ) { |
458 | 458 |
|
459 | 459 | function isArrayLike( obj ) { |
460 | 460 |
|
461 | | - // Support: iOS 8.2 (not reproducible in simulator) |
| 461 | + // Support: real iOS 8.2 only (not reproducible in simulator) |
462 | 462 | // `in` check used to prevent JIT error (gh-2145) |
463 | 463 | // hasOwn isn't used here due to false negatives |
464 | 464 | // regarding Nodelist length in IE |
|
0 commit comments