Skip to content

Commit 8ab3d92

Browse files
committed
examples/deepzoom: Update jQuery to 1.11.3
1 parent 004dc9f commit 8ab3d92

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

examples/deepzoom/static/jquery.js

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery JavaScript Library v1.11.2
2+
* jQuery JavaScript Library v1.11.3
33
* http://jquery.com/
44
*
55
* Includes Sizzle.js
@@ -9,7 +9,7 @@
99
* Released under the MIT license
1010
* http://jquery.org/license
1111
*
12-
* Date: 2014-12-17T15:27Z
12+
* Date: 2015-04-28T16:19Z
1313
*/
1414

1515
(function( global, factory ) {
@@ -64,7 +64,7 @@ var support = {};
6464

6565

6666
var
67-
version = "1.11.2",
67+
version = "1.11.3",
6868

6969
// Define a local copy of jQuery
7070
jQuery = function( selector, context ) {
@@ -569,7 +569,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
569569
});
570570

571571
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,
573578
type = jQuery.type( obj );
574579

575580
if ( type === "function" || jQuery.isWindow( obj ) ) {

0 commit comments

Comments
 (0)