()
| 164 | } |
| 165 | |
| 166 | focusControl() { |
| 167 | const nodes = this.openedWindow.querySelectorAll(this._focusElements); |
| 168 | if (this.isOpened && this.starter) { |
| 169 | this.starter.focus(); |
| 170 | } else if (nodes.length) nodes[0].focus(); |
| 171 | } |
| 172 | |
| 173 | focusCatcher(e) { |
| 174 | const nodes = this.openedWindow.querySelectorAll(this._focusElements); |
no outgoing calls
no test coverage detected