( elem, el )
| 4094 | var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; |
| 4095 | |
| 4096 | var isHidden = function( elem, el ) { |
| 4097 | // isHidden might be called from jQuery#filter function; |
| 4098 | // in that case, element will be second argument |
| 4099 | elem = el || elem; |
| 4100 | return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); |
| 4101 | }; |
| 4102 | |
| 4103 | |
| 4104 |
no outgoing calls
no test coverage detected