(e)
| 341 | } |
| 342 | |
| 343 | toggleModelList(e) { |
| 344 | e.preventDefault() |
| 345 | if (!this.modelFilter.disabled) { |
| 346 | if (this.modelList.style.display != "block") { |
| 347 | this.showModelList() |
| 348 | } else { |
| 349 | this.hideModelList() |
| 350 | this.modelFilter.select() |
| 351 | } |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | selectEntry(path, dispatchEvent = true) { |
| 356 | if (path !== undefined) { |
nothing calls this directly
no test coverage detected