Dropdown items casing issue

This commit is contained in:
Israel 2017-12-04 03:05:07 -05:00
parent f2492e32dc
commit 017cd22fd6
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ function completely(config) {
divRow.onmouseout = onMouseOut;
divRow.onmousedown = onMouseDown;
divRow.__hint = array[i];
divRow.innerHTML = token + '<b>' + array[i].substring(token.length) + '</b>';
divRow.innerHTML = array[i].substring(0, token.length) + '<b>' + array[i].substring(token.length) + '</b>';
rows.push(divRow);
elem.appendChild(divRow);
}