Revert change to visible/hidden selectors until 1.10 and 2.1. Reopens #13132, #10406.

This commit is contained in:
Timmy Willison
2013-01-30 20:09:56 -05:00
parent 1bbe2b1ded
commit 1e1ea2c44f
2 changed files with 2 additions and 2 deletions

View File

@@ -632,7 +632,7 @@ if ( jQuery.expr && jQuery.expr.filters ) {
jQuery.expr.filters.hidden = function( elem ) {
// Support: Opera <= 12.12
// Opera reports offsetWidths and offsetHeights less than zero on some elements
return elem.offsetWidth <= 0 || elem.offsetHeight <= 0 ||
return elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||
(!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none");
};