@@ -95,7 +95,7 @@ function _formDisplaySelection(_field, val) {
9595
9696 /*append the DIV element as a child of the autocomplete container:*/
9797 _altInput.parentNode.appendChild(a);
98- let _itemCount = Object.keys(arr).length
98+ let _itemCount = Object.keys(arr).length;
9999
100100 Object.keys(arr).forEach(key => {
101101 if (arr[key].substr(0, val.length).toUpperCase() == val.toUpperCase()) {
@@ -111,7 +111,7 @@ function _formDisplaySelection(_field, val) {
111111 formCloseAllSelectLists();
112112
113113 if (a.childNodes.length > 0) {
114- _altInput.setAttribute('class', inp.getAttribute('class'))
114+ _altInput.setAttribute('class', inp.getAttribute('class'));
115115 let _formElementStyle = getComputedStyle(_altInput);
116116 let border = "border: " + _formElementStyle.border + "; ";
117117 let width = "width:"+ _altInput.offsetWidth + "px; ";
@@ -191,7 +191,7 @@ function removeSelectActive(x) {
191191 }
192192
193193 if (_list && _list.childNodes.length > 0) {
194- _altInput.setAttribute('class', inp.getAttribute('class'))
194+ _altInput.setAttribute('class', inp.getAttribute('class'));
195195 let _formElementStyle = getComputedStyle(_altInput);
196196 let border = "border: " + _formElementStyle.border + "; ";
197197 let width = "width:"+ _altInput.offsetWidth + "px; ";
0 commit comments