File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*!
2
- * jQuery JavaScript Library v1.11.2
2
+ * jQuery JavaScript Library v1.11.3
3
3
* http://jquery.com/
4
4
*
5
5
* Includes Sizzle.js
9
9
* Released under the MIT license
10
10
* http://jquery.org/license
11
11
*
12
- * Date: 2014-12-17T15:27Z
12
+ * Date: 2015-04-28T16:19Z
13
13
*/
14
14
15
15
( function ( global , factory ) {
@@ -64,7 +64,7 @@ var support = {};
64
64
65
65
66
66
var
67
- version = "1.11.2 " ,
67
+ version = "1.11.3 " ,
68
68
69
69
// Define a local copy of jQuery
70
70
jQuery = function ( selector , context ) {
@@ -569,7 +569,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
569
569
} ) ;
570
570
571
571
function isArraylike ( obj ) {
572
- var length = obj . length ,
572
+
573
+ // Support: iOS 8.2 (not reproducible in simulator)
574
+ // `in` check used to prevent JIT error (gh-2145)
575
+ // hasOwn isn't used here due to false negatives
576
+ // regarding Nodelist length in IE
577
+ var length = "length" in obj && obj . length ,
573
578
type = jQuery . type ( obj ) ;
574
579
575
580
if ( type === "function" || jQuery . isWindow ( obj ) ) {
You can’t perform that action at this time.
0 commit comments