Skip to content

Commit e1c0d78

Browse files
committedMay 5, 2015
updated bower packages
1 parent 5978fe2 commit e1c0d78

File tree

6 files changed

+28
-15
lines changed

6 files changed

+28
-15
lines changed
 

‎bower_components/jquery/.bower.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"name": "jquery",
3-
"version": "1.11.2",
3+
"version": "1.11.3",
44
"main": "dist/jquery.js",
55
"license": "MIT",
66
"ignore": [
77
"**/.*",
88
"build",
9+
"dist/cdn",
910
"speed",
1011
"test",
1112
"*.md",
@@ -25,11 +26,11 @@
2526
"library"
2627
],
2728
"homepage": "https://github.com/jquery/jquery",
28-
"_release": "1.11.2",
29+
"_release": "1.11.3",
2930
"_resolution": {
3031
"type": "version",
31-
"tag": "1.11.2",
32-
"commit": "9690801db01709bfbff5f977d07fb7cc14472908"
32+
"tag": "1.11.3",
33+
"commit": "1472290917f17af05e98007136096784f9051fab"
3334
},
3435
"_source": "git://github.com/jquery/jquery.git",
3536
"_target": "<2.0.0",

‎bower_components/jquery/bower.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"name": "jquery",
3-
"version": "1.11.2",
3+
"version": "1.11.3",
44
"main": "dist/jquery.js",
55
"license": "MIT",
66
"ignore": [
77
"**/.*",
88
"build",
9+
"dist/cdn",
910
"speed",
1011
"test",
1112
"*.md",

‎bower_components/jquery/dist/jquery.js

+9-4
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 ) ) {

‎bower_components/jquery/dist/jquery.min.js

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎bower_components/jquery/dist/jquery.min.map

+1-1
Large diffs are not rendered by default.

‎bower_components/jquery/src/core.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
516516
});
517517

518518
function isArraylike( obj ) {
519-
var length = obj.length,
519+
520+
// Support: iOS 8.2 (not reproducible in simulator)
521+
// `in` check used to prevent JIT error (gh-2145)
522+
// hasOwn isn't used here due to false negatives
523+
// regarding Nodelist length in IE
524+
var length = "length" in obj && obj.length,
520525
type = jQuery.type( obj );
521526

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

0 commit comments

Comments
 (0)
Please sign in to comment.