( elem )
| 6225 | // NOTE: we've included the "window" in window.getComputedStyle |
| 6226 | // because jsdom on node.js will break without it. |
| 6227 | function getStyles( elem ) { |
| 6228 | return window.getComputedStyle( elem, null ); |
| 6229 | } |
| 6230 | |
| 6231 | function showHide( elements, show ) { |
| 6232 | var display, elem, hidden, |
no outgoing calls
no test coverage detected