Skip to content

Commit

Permalink
updated bower packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed May 5, 2015
1 parent 5978fe2 commit e1c0d78
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 15 deletions.
9 changes: 5 additions & 4 deletions bower_components/jquery/.bower.json
@@ -1,11 +1,12 @@
{
"name": "jquery",
"version": "1.11.2",
"version": "1.11.3",
"main": "dist/jquery.js",
"license": "MIT",
"ignore": [
"**/.*",
"build",
"dist/cdn",
"speed",
"test",
"*.md",
Expand All @@ -25,11 +26,11 @@
"library"
],
"homepage": "https://github.com/jquery/jquery",
"_release": "1.11.2",
"_release": "1.11.3",
"_resolution": {
"type": "version",
"tag": "1.11.2",
"commit": "9690801db01709bfbff5f977d07fb7cc14472908"
"tag": "1.11.3",
"commit": "1472290917f17af05e98007136096784f9051fab"
},
"_source": "git://github.com/jquery/jquery.git",
"_target": "<2.0.0",
Expand Down
3 changes: 2 additions & 1 deletion bower_components/jquery/bower.json
@@ -1,11 +1,12 @@
{
"name": "jquery",
"version": "1.11.2",
"version": "1.11.3",
"main": "dist/jquery.js",
"license": "MIT",
"ignore": [
"**/.*",
"build",
"dist/cdn",
"speed",
"test",
"*.md",
Expand Down
13 changes: 9 additions & 4 deletions bower_components/jquery/dist/jquery.js
@@ -1,5 +1,5 @@
/*!
* jQuery JavaScript Library v1.11.2
* jQuery JavaScript Library v1.11.3
* http://jquery.com/
*
* Includes Sizzle.js
Expand All @@ -9,7 +9,7 @@
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2014-12-17T15:27Z
* Date: 2015-04-28T16:19Z
*/

(function( global, factory ) {
Expand Down Expand Up @@ -64,7 +64,7 @@ var support = {};


var
version = "1.11.2",
version = "1.11.3",

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

function isArraylike( obj ) {
var length = obj.length,

// Support: iOS 8.2 (not reproducible in simulator)
// `in` check used to prevent JIT error (gh-2145)
// hasOwn isn't used here due to false negatives
// regarding Nodelist length in IE
var length = "length" in obj && obj.length,
type = jQuery.type( obj );

if ( type === "function" || jQuery.isWindow( obj ) ) {
Expand Down
9 changes: 5 additions & 4 deletions bower_components/jquery/dist/jquery.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower_components/jquery/dist/jquery.min.map

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion bower_components/jquery/src/core.js
Expand Up @@ -516,7 +516,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
});

function isArraylike( obj ) {
var length = obj.length,

// Support: iOS 8.2 (not reproducible in simulator)
// `in` check used to prevent JIT error (gh-2145)
// hasOwn isn't used here due to false negatives
// regarding Nodelist length in IE
var length = "length" in obj && obj.length,
type = jQuery.type( obj );

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

0 comments on commit e1c0d78

Please sign in to comment.