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.0.0-rc1 to 3.0.0

2

dist/core.js

@@ -23,3 +23,3 @@ define( [

var
version = "3.0.0-rc1",
version = "3.0.0",

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

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

"description": "JavaScript library for DOM operations",
"version": "3.0.0-rc1",
"version": "3.0.0",
"main": "dist/jquery.js",

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

"name": "jQuery Foundation and other contributors",
"url": "https://github.com/jquery/jquery/blob/3.0.0-rc1/AUTHORS.txt"
"url": "https://github.com/jquery/jquery/blob/3.0.0/AUTHORS.txt"
},

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

@@ -41,3 +41,3 @@ define( [

// All attributes are lowercase
// Attribute hooks are determined by the lowercase version
// Grab necessary hook if one is defined

@@ -121,12 +121,14 @@ if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {

attrHandle[ name ] = function( elem, name, isXML ) {
var ret, handle;
var ret, handle,
lowercaseName = name.toLowerCase();
if ( !isXML ) {
// Avoid an infinite loop by temporarily removing this function from the getter
handle = attrHandle[ name ];
attrHandle[ name ] = ret;
handle = attrHandle[ lowercaseName ];
attrHandle[ lowercaseName ] = ret;
ret = getter( elem, name, isXML ) != null ?
name.toLowerCase() :
lowercaseName :
null;
attrHandle[ name ] = handle;
attrHandle[ lowercaseName ] = handle;
}

@@ -133,0 +135,0 @@ return ret;

@@ -23,3 +23,3 @@ define( [

var
version = "3.0.0-rc1",
version = "3.0.0",

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

@@ -165,3 +165,3 @@ define( [

resolve( maxDepth, deferred, Identity,
deferred.notify )
deferred.notifyWith )
);

@@ -168,0 +168,0 @@ }

@@ -530,3 +530,3 @@ define( [

// Target should not be a text node (#504, #13143)
this.target = ( src.target.nodeType === 3 ) ?
this.target = ( src.target && src.target.nodeType === 3 ) ?
src.target.parentNode :

@@ -619,2 +619,4 @@ src.target;

offsetY: true,
pointerId: true,
pointerType: true,
screenX: true,

@@ -621,0 +623,0 @@ screenY: true,

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