You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
526B

  1. define( [
  2. "../core",
  3. "../selector"
  4. ], function( jQuery ) {
  5. jQuery.expr.filters.hidden = function( elem ) {
  6. return !jQuery.expr.filters.visible( elem );
  7. };
  8. jQuery.expr.filters.visible = function( elem ) {
  9. // Support: Opera <= 12.12
  10. // Opera reports offsetWidths and offsetHeights less than zero on some elements
  11. // Use OR instead of AND as the element is not visible if either is true
  12. // See tickets #10406 and #13132
  13. return elem.offsetWidth > 0 || elem.offsetHeight > 0 || elem.getClientRects().length > 0;
  14. };
  15. } );