quickfix for IE for searchInbox

This commit is contained in:
Alexandre Cloutier
2014-09-10 13:22:36 -04:00
parent 60e3c1c822
commit 69c8aa0743

View File

@@ -258,7 +258,7 @@ function onAddFilter() {
for (var i = 0; i < searchByList.length; i++) {
var option = document.createElement("option");
option.value = options[i];
option.text = searchByList[i].innerHTML;
option.innerHTML = searchByList[i].innerHTML;
element1.appendChild(option);
}
cell1.appendChild(element1);
@@ -269,7 +269,7 @@ function onAddFilter() {
element2.setAttribute("id", "searchArgumentsListRow" + rowCount);
for (var i = 0; i < stringArgumentsList.length; i++) {
var option = document.createElement("option");
option.text = stringArgumentsList[i].innerHTML;
option.innerHTML = stringArgumentsList[i].innerHTML;
element2.appendChild(option);
}
cell2.appendChild(element2);