Blame view

bower_components/jquery/src/css/hiddenVisibleSelectors.js 526 Bytes
a1a3bc73   Luigi Serra   graphs updates
1
  define( [
74249687   Luigi Serra   Cross browser con...
2
3
4
5
6
  	"../core",
  	"../selector"
  ], function( jQuery ) {
  
  jQuery.expr.filters.hidden = function( elem ) {
a1a3bc73   Luigi Serra   graphs updates
7
  	return !jQuery.expr.filters.visible( elem );
74249687   Luigi Serra   Cross browser con...
8
9
  };
  jQuery.expr.filters.visible = function( elem ) {
a1a3bc73   Luigi Serra   graphs updates
10
11
12
13
14
15
  
  	// Support: Opera <= 12.12
  	// Opera reports offsetWidths and offsetHeights less than zero on some elements
  	// Use OR instead of AND as the element is not visible if either is true
  	// See tickets #10406 and #13132
  	return elem.offsetWidth > 0 || elem.offsetHeight > 0 || elem.getClientRects().length > 0;
74249687   Luigi Serra   Cross browser con...
16
17
  };
  
a1a3bc73   Luigi Serra   graphs updates
18
  } );