Blame view

bower_components/jquery/src/css/hiddenVisibleSelectors.js 380 Bytes
c5169e0e   Renato De Donato   a new hope
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
8
  	// Support: Opera <= 12.12
  	// Opera reports offsetWidths and offsetHeights less than zero on some elements
c5169e0e   Renato De Donato   a new hope
9
10
11
12
  	return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
  };
  jQuery.expr.filters.visible = function( elem ) {
  	return !jQuery.expr.filters.hidden( elem );
74249687   Luigi Serra   Cross browser con...
13
14
  };
  
c5169e0e   Renato De Donato   a new hope
15
  });