({ data })
| 191 | }, |
| 192 | |
| 193 | pasteResponse({ data }) { |
| 194 | // Hide the HUD frame again. |
| 195 | this.hudUI.setIframeVisible(false); |
| 196 | this.unfocusIfFocused(); |
| 197 | this.pasteListener(data); |
| 198 | }, |
| 199 | |
| 200 | unfocusIfFocused() { |
| 201 | // On Firefox, if an <iframe> disappears when it's focused, then it will keep "focused", which |
nothing calls this directly
no test coverage detected