Skip to content

Commit a0c59a0

Browse files
author
Tortue Torche
committed
Updated to jQuery 1.11.3 and jQuery 2.1.4
1 parent 0015b1d commit a0c59a0

File tree

6 files changed

+29
-18
lines changed

6 files changed

+29
-18
lines changed

provider/assets/js/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 ) ) {

provider/assets/js/jquery.min.js

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/assets/js/jquery.min.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/assets/js/jquery2.js

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery JavaScript Library v2.1.3
2+
* jQuery JavaScript Library v2.1.4
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-18T15:11Z
12+
* Date: 2015-04-28T16:01Z
1313
*/
1414

1515
(function( global, factory ) {
@@ -67,7 +67,7 @@ var
6767
// Use the correct document accordingly with window argument (sandbox)
6868
document = window.document,
6969

70-
version = "2.1.3",
70+
version = "2.1.4",
7171

7272
// Define a local copy of jQuery
7373
jQuery = function( selector, context ) {
@@ -531,7 +531,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
531531
});
532532

533533
function isArraylike( obj ) {
534-
var length = obj.length,
534+
535+
// Support: iOS 8.2 (not reproducible in simulator)
536+
// `in` check used to prevent JIT error (gh-2145)
537+
// hasOwn isn't used here due to false negatives
538+
// regarding Nodelist length in IE
539+
var length = "length" in obj && obj.length,
535540
type = jQuery.type( obj );
536541

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

provider/assets/js/jquery2.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/assets/js/jquery2.min.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)