Socket
Socket
Sign inDemoInstall

jquery

Package Overview
Dependencies
Maintainers
4
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jquery - npm Package Compare versions

Comparing version 3.2.0 to 3.2.1

src/manipulation/var/rcheckableType.js

2

dist/core.js

@@ -27,3 +27,3 @@ /* global Symbol */

var
version = "3.2.0",
version = "3.2.1",

@@ -30,0 +30,0 @@ // Define a local copy of jQuery

@@ -5,3 +5,3 @@ {

"description": "JavaScript library for DOM operations",
"version": "3.2.0",
"version": "3.2.1",
"main": "dist/jquery.js",

@@ -11,3 +11,3 @@ "homepage": "https://jquery.com",

"name": "JS Foundation and other contributors",
"url": "https://github.com/jquery/jquery/blob/3.2.0/AUTHORS.txt"
"url": "https://github.com/jquery/jquery/blob/3.2.1/AUTHORS.txt"
},

@@ -14,0 +14,0 @@ "repository": {

@@ -8,2 +8,4 @@ # 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

@@ -18,3 +20,3 @@

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

@@ -21,0 +23,0 @@

@@ -27,3 +27,3 @@ /* global Symbol */

var
version = "3.2.0",
version = "3.2.1",

@@ -30,0 +30,0 @@ // Define a local copy of jQuery

@@ -147,2 +147,8 @@ define( [

// Fall back to offsetWidth/Height when value is "auto"
// This happens for inline elements with no explicit setting (gh-3571)
if ( val === "auto" ) {
val = elem[ "offset" + name[ 0 ].toUpperCase() + name.slice( 1 ) ];
}
// Normalize "", auto, and prepare for extra

@@ -149,0 +155,0 @@ val = parseFloat( val ) || 0;

@@ -14,2 +14,7 @@ define( [

var width, minWidth, maxWidth, ret,
// Support: Firefox 51+
// Retrieving style before computed somehow
// fixes an issue with getting wrong values
// on detached elements
style = elem.style;

@@ -16,0 +21,0 @@

@@ -26,12 +26,12 @@ define( [

this.off( types, selector || "**", fn );
},
holdReady: function( hold ) {
if ( hold ) {
jQuery.readyWait++;
} else {
jQuery.ready( true );
}
}
} );
jQuery.holdReady = function( hold ) {
if ( hold ) {
jQuery.readyWait++;
} else {
jQuery.ready( true );
}
};
jQuery.isArray = Array.isArray;

@@ -38,0 +38,0 @@ jQuery.parseJSON = JSON.parse;

@@ -6,3 +6,2 @@ define( [

"./var/rnothtmlwhite",
"./var/rcheckableType",
"./var/slice",

@@ -14,4 +13,3 @@ "./data/var/dataPriv",

"./selector"
], function( jQuery, document, documentElement, rnothtmlwhite,
rcheckableType, slice, dataPriv, nodeName ) {
], function( jQuery, document, documentElement, rnothtmlwhite, slice, dataPriv, nodeName ) {

@@ -482,7 +480,5 @@ "use strict";

// For checkable types, fire native event so checked state will be right
// For checkbox, fire native event so checked state will be right
trigger: function() {
if ( rcheckableType.test( this.type ) &&
this.click && nodeName( this, "input" ) ) {
if ( this.type === "checkbox" && this.click && nodeName( this, "input" ) ) {
this.click();

@@ -489,0 +485,0 @@ return false;

@@ -5,4 +5,4 @@ define( [

"./var/push",
"./var/rcheckableType",
"./core/access",
"./manipulation/var/rcheckableType",
"./manipulation/var/rtagName",

@@ -26,4 +26,4 @@ "./manipulation/var/rscriptType",

"./event"
], function( jQuery, concat, push, rcheckableType,
access, rtagName, rscriptType,
], function( jQuery, concat, push, access,
rcheckableType, rtagName, rscriptType,
wrapMap, getAll, setGlobalEval, buildFragment, support,

@@ -30,0 +30,0 @@ dataPriv, dataUser, acceptData, DOMEval, nodeName ) {

define( [
"./core",
"./var/rcheckableType",
"./manipulation/var/rcheckableType",
"./core/init",

@@ -5,0 +5,0 @@ "./traversing", // filter

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc