🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

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

to
1.12.4

external/sizzle/dist/sizzle.js

2

package.json

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

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

@@ -8,0 +8,0 @@ "homepage": "http://jquery.com",

@@ -189,15 +189,2 @@ define( [

// Support: IE11 only
// In IE 11 fullscreen elements inside of an iframe have
// 100x too small dimensions (gh-1764).
if ( document.msFullscreenElement && window.top !== window ) {
// Support: IE11 only
// Running getBoundingClientRect on a disconnected node
// in IE throws an error.
if ( elem.getClientRects().length ) {
val = Math.round( elem.getBoundingClientRect()[ name ] * 100 );
}
}
// some non-html elements return undefined for offsetWidth, so check for null/undefined

@@ -204,0 +191,0 @@ // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285

define( [
"../core",
"../var/document",
"./support",
"../selector",
"../css"
], function( jQuery, support ) {
], function( jQuery, document, support ) {

@@ -13,2 +14,7 @@ function getDisplay( elem ) {

function filterHidden( elem ) {
// Disconnected elements are considered hidden
if ( !jQuery.contains( elem.ownerDocument || document, elem ) ) {
return true;
}
while ( elem && elem.nodeType === 1 ) {

@@ -15,0 +21,0 @@ if ( getDisplay( elem ) === "none" || elem.type === "hidden" ) {

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

div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>";
div.childNodes[ 0 ].style.borderCollapse = "separate";
contents = div.getElementsByTagName( "td" );

@@ -167,0 +168,0 @@ contents[ 0 ].style.cssText = "margin:0;border:0;padding:0;display:none";

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