Fix long lists not scrolling to top on reset

This commit is contained in:
Dominik Reh
2023-01-29 18:43:09 +01:00
parent a588e0b989
commit db3319b0d3

View File

@@ -524,6 +524,9 @@ function addResultsToList(textArea, results, tagword, resetList) {
resultsList.appendChild(li);
}
resultCount = nextLength;
if (resetList)
resultDiv.scrollTop = 0;
}
function updateSelectionStyle(textArea, newIndex, oldIndex) {