()
| 85 | } |
| 86 | |
| 87 | public close(): void { |
| 88 | if (this.overlay) { |
| 89 | this.overlay.remove(); |
| 90 | this.overlay = null; |
| 91 | this.input = null; |
| 92 | this.resultsList = null; |
| 93 | this.results = []; |
| 94 | this.commandResults = []; |
| 95 | this.selectedIndex = 0; |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | public isOpen(): boolean { |
| 100 | return this.overlay !== null; |
no outgoing calls