(option, parent)
| 30864 | // ------------------------------------------------------------------ // |
| 30865 | |
| 30866 | function addOptionElement(option, parent) { |
| 30867 | var optionElement = optionTemplate.cloneNode(false); |
| 30868 | parent.appendChild(optionElement); |
| 30869 | updateOptionElement(option, optionElement); |
| 30870 | } |
| 30871 | |
| 30872 | function getAndUpdateSelectedOption(viewValue) { |
| 30873 | var option = options.getOptionFromViewValue(viewValue); |
no test coverage detected