(container, exclude, cb)
| 9049 | }; |
| 9050 | |
| 9051 | var siblings = function siblings(container, exclude, cb) { |
| 9052 | exclude = [].concat(exclude); |
| 9053 | [].forEach.call(container.children, function (node) { |
| 9054 | if (exclude.indexOf(node) === -1 && isHidable(node)) { |
| 9055 | cb(node); |
| 9056 | } |
| 9057 | }); |
| 9058 | }; |
| 9059 | |
| 9060 | function ariaHidden(show, node) { |
| 9061 | if (!node) return; |
no test coverage detected
searching dependent graphs…