(show, node)
| 9058 | }; |
| 9059 | |
| 9060 | function ariaHidden(show, node) { |
| 9061 | if (!node) return; |
| 9062 | |
| 9063 | if (show) { |
| 9064 | node.setAttribute('aria-hidden', 'true'); |
| 9065 | } else { |
| 9066 | node.removeAttribute('aria-hidden'); |
| 9067 | } |
| 9068 | } |
| 9069 | |
| 9070 | function hideSiblings(container, _ref2) { |
| 9071 | var root = _ref2.root, |
no outgoing calls
no test coverage detected
searching dependent graphs…