(option, parent)
| 32623 | // ------------------------------------------------------------------ // |
| 32624 | |
| 32625 | function addOptionElement(option, parent) { |
| 32626 | var optionElement = optionTemplate.cloneNode(false); |
| 32627 | parent.appendChild(optionElement); |
| 32628 | updateOptionElement(option, optionElement); |
| 32629 | } |
| 32630 | |
| 32631 | function getAndUpdateSelectedOption(viewValue) { |
| 32632 | var option = options.getOptionFromViewValue(viewValue); |
no test coverage detected