MCPcopy Index your code
hub / github.com/caike/jQuery-Simple-Timer / isHidden

Function isHidden

examples/bundle.js:4563–4570  ·  view source on GitHub ↗
( elem, el )

Source from the content-addressed store, hash-verified

4561var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
4562
4563var isHidden = function( elem, el ) {
4564
4565 // isHidden might be called from jQuery#filter function;
4566 // in that case, element will be second argument
4567 elem = el || elem;
4568 return jQuery.css( elem, "display" ) === "none" ||
4569 !jQuery.contains( elem.ownerDocument, elem );
4570 };
4571
4572
4573

Callers 3

showHideFunction · 0.85
bundle.jsFile · 0.85
defaultPrefilterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected