(text = "Select...", value = "0")
| 558 | syncActiveTabHeight(); |
| 559 | } |
| 560 | function createDefaultOption(text = "Select...", value = "0") { |
| 561 | const option = document.createElement("option"); |
| 562 | option.value = value; |
| 563 | option.textContent = text; |
| 564 | option.selected = true; |
| 565 | option.disabled = true; |
| 566 | return option; |
| 567 | } |
| 568 | function populateDropdownWithOptions( |
| 569 | selectElement, |
| 570 | defaultText, |
no outgoing calls
no test coverage detected