(option, parent)
| 31425 | // ------------------------------------------------------------------ // |
| 31426 | |
| 31427 | function addOptionElement(option, parent) { |
| 31428 | var optionElement = optionTemplate.cloneNode(false); |
| 31429 | parent.appendChild(optionElement); |
| 31430 | updateOptionElement(option, optionElement); |
| 31431 | } |
| 31432 | |
| 31433 | function getAndUpdateSelectedOption(viewValue) { |
| 31434 | var option = options.getOptionFromViewValue(viewValue); |
no test coverage detected