Skip to content

Commit

Permalink
Updated jquery 3.1.1 -> 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
amatriain committed Mar 25, 2017
1 parent bf49ff7 commit e7e7586
Show file tree
Hide file tree
Showing 35 changed files with 565 additions and 447 deletions.
2 changes: 1 addition & 1 deletion Bowerfile
@@ -1,4 +1,4 @@
asset 'jquery', '3.1.1'
asset 'jquery', '3.2.1'
asset 'angular', '1.6.3'
asset 'angular-sanitize', '1.6.3'
asset 'angular-touch', '1.6.3'
Expand Down
2 changes: 1 addition & 1 deletion vendor/assets/bower.json
@@ -1,7 +1,7 @@
{
"name": "dsl-generated-dependencies",
"dependencies": {
"jquery": "3.1.1",
"jquery": "3.2.1",
"angular": "1.6.3",
"angular-sanitize": "1.6.3",
"angular-touch": "1.6.3",
Expand Down
10 changes: 5 additions & 5 deletions vendor/assets/bower_components/jquery/.bower.json
Expand Up @@ -12,14 +12,14 @@
"library"
],
"homepage": "https://github.com/jquery/jquery-dist",
"version": "3.1.1",
"_release": "3.1.1",
"version": "3.2.1",
"_release": "3.2.1",
"_resolution": {
"type": "version",
"tag": "3.1.1",
"commit": "1b30f3ad466ebf2714d47eda34dbd7fdf6849fe3"
"tag": "3.2.1",
"commit": "77d2a51d0520d2ee44173afdf4e40a9201f5964e"
},
"_source": "https://github.com/jquery/jquery-dist.git",
"_target": "3.1.1",
"_target": "3.2.1",
"_originalSource": "jquery"
}
6 changes: 6 additions & 0 deletions vendor/assets/bower_components/jquery/AUTHORS.txt
Expand Up @@ -293,3 +293,9 @@ Damian Senn <jquery@topaxi.codes>
Ralin Chimev <ralin.chimev@gmail.com>
Felipe Sateler <fsateler@gmail.com>
Christophe Tafani-Dereeper <christophetd@hotmail.fr>
Manoj Kumar <nithmanoj@gmail.com>
David Broder-Rodgers <broder93@gmail.com>
Alex Louden <alex@louden.com>
Alex Padilla <alexonezero@outlook.com>
南漂一卒 <shiy007@qq.com>
karan-96 <karanbatra96@gmail.com>
2 changes: 1 addition & 1 deletion vendor/assets/bower_components/jquery/LICENSE.txt
@@ -1,4 +1,4 @@
Copyright jQuery Foundation and other contributors, https://jquery.org/
Copyright JS Foundation and other contributors, https://js.foundation/

This software consists of voluntary contributions made by many
individuals. For exact contribution history, see the revision history
Expand Down
4 changes: 3 additions & 1 deletion vendor/assets/bower_components/jquery/README.md
Expand Up @@ -5,6 +5,8 @@
For information on how to get started and how to use jQuery, please see [jQuery's documentation](http://api.jquery.com/).
For source files and issues, please visit the [jQuery repo](https://github.com/jquery/jquery).

If upgrading, please see the [blog post for 3.2.1](https://blog.jquery.com/2017/03/20/jquery-3-2-1-now-available/). This includes notable differences from the previous version and a more readable changelog.

## Including jQuery

Below are some of the most common ways to include jQuery.
Expand All @@ -14,7 +16,7 @@ Below are some of the most common ways to include jQuery.
#### Script tag

```html
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
```

#### Babel
Expand Down
12 changes: 3 additions & 9 deletions vendor/assets/bower_components/jquery/dist/core.js
Expand Up @@ -24,7 +24,7 @@ define( [
"use strict";

var
version = "3.1.1",
version = "3.2.1",

// Define a local copy of jQuery
jQuery = function( selector, context ) {
Expand Down Expand Up @@ -172,11 +172,11 @@ jQuery.extend = jQuery.fn.extend = function() {

// Recurse if we're merging plain objects or arrays
if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
( copyIsArray = jQuery.isArray( copy ) ) ) ) {
( copyIsArray = Array.isArray( copy ) ) ) ) {

if ( copyIsArray ) {
copyIsArray = false;
clone = src && jQuery.isArray( src ) ? src : [];
clone = src && Array.isArray( src ) ? src : [];

} else {
clone = src && jQuery.isPlainObject( src ) ? src : {};
Expand Down Expand Up @@ -215,8 +215,6 @@ jQuery.extend( {
return jQuery.type( obj ) === "function";
},

isArray: Array.isArray,

isWindow: function( obj ) {
return obj != null && obj === obj.window;
},
Expand Down Expand Up @@ -291,10 +289,6 @@ jQuery.extend( {
return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
},

nodeName: function( elem, name ) {
return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
},

each: function( obj, callback ) {
var length, i = 0;

Expand Down

0 comments on commit e7e7586

Please sign in to comment.