diff --git a/core/src/main/resources/lib/form/select/select.js b/core/src/main/resources/lib/form/select/select.js index 41651666196014db22d00d79e001c95524a644e4..5d1262efb1b57662b9cdba23c2bcbfc7ce9d785e 100644 --- a/core/src/main/resources/lib/form/select/select.js +++ b/core/src/main/resources/lib/form/select/select.js @@ -44,11 +44,8 @@ Behaviour.specify("SELECT.select", 'select', 1000, function(e) { function hasChanged(selectEl, originalValue) { // seems like a race condition allows this to fire before the 'selectEl' is defined. If that happens, exit.. -<<<<<<< HEAD + if(!selectEl || !selectEl.options || !selectEl.options[0]) -======= - if(!selectEl || !selectEl.options || !selectEl[0]) ->>>>>>> 219481a2926a6a6e2d86753f250449ba73f198ba return false; var firstValue = selectEl.options[0].value; var selectedValue = selectEl.value;