( elem, el )
| 6216 | } |
| 6217 | |
| 6218 | function isHidden( elem, el ) { |
| 6219 | // isHidden might be called from jQuery#filter function; |
| 6220 | // in that case, element will be second argument |
| 6221 | elem = el || elem; |
| 6222 | return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); |
| 6223 | } |
| 6224 | |
| 6225 | // NOTE: we've included the "window" in window.getComputedStyle |
| 6226 | // because jsdom on node.js will break without it. |
no outgoing calls
no test coverage detected