Comparing version 1.12.3 to 1.12.4
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
906299
108
18996