()
| 239 | static i18nBundle: I18nBundle; |
| 240 | |
| 241 | constructor() { |
| 242 | super(); |
| 243 | |
| 244 | this.deactivateByKey = (e: KeyboardEvent) => { |
| 245 | if (isEnter(e)) { |
| 246 | this.deactivate(); |
| 247 | } |
| 248 | }; |
| 249 | |
| 250 | this.deactivate = () => { |
| 251 | if (this.active) { |
| 252 | this.active = false; |
| 253 | } |
| 254 | }; |
| 255 | } |
| 256 | |
| 257 | onBeforeRendering() { |
| 258 | super.onBeforeRendering(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…