( elem, el )
| 4561 | var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; |
| 4562 | |
| 4563 | var 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 |
no outgoing calls
no test coverage detected