Socket
Socket
Sign inDemoInstall

jquery

Package Overview
Dependencies
Maintainers
1
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 1.11.0-rc1 to 1.11.0

dist/cdn/jquery-1.11.0.js

2

bower.json
{
"name": "jquery",
"version": "1.11.0-rc1",
"version": "1.11.0",
"ignore": [

@@ -5,0 +5,0 @@ "**/.*",

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

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

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

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

@@ -29,3 +29,3 @@ "repository": {

"type": "MIT",
"url": "https://github.com/jquery/jquery/blob/1.11.0-rc1/MIT-LICENSE.txt"
"url": "https://github.com/jquery/jquery/blob/1.11.0/MIT-LICENSE.txt"
}

@@ -32,0 +32,0 @@ ],

@@ -10,4 +10,2 @@ define([

input.type = "checkbox";
// Setup

@@ -33,11 +31,14 @@ div.setAttribute( "className", "t" );

// Make sure checked status is properly cloned
input.checked = true;
support.noCloneChecked = input.cloneNode( true ).checked;
// Check if a disconnected checkbox will retain its checked
// value of true after appended to the DOM (IE6/7)
input.type = "checkbox";
input.checked = true;
fragment.appendChild( input );
support.appendChecked = input.checked;
// Make sure textarea (and checkbox) defaultValue is properly cloned
// Support: IE6-IE11+
div.innerHTML = "<textarea>x</textarea>";
support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
// #11217 - WebKit loses check when the name is after the checked attribute

@@ -44,0 +45,0 @@ fragment.appendChild( div );

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