Putting Jar versions from most recent to oldest

This commit is contained in:
Silversthorn 2022-03-03 23:20:55 +01:00
parent cb1679806e
commit 52297829df

View File

@ -639,8 +639,8 @@ function hide(event) {
cSelect.remove(0);
}
var newOption;
// create new options ordered by descending
for (var i=(cList.length)-1; i>=0; i--) {
// create new options ordered by ascending
for (var i=0; i < (cList.length); i++) {
newOption = document.createElement("option");
newOption.value = which+"|"+cList[i]; // assumes option string and value are the same
newOption.text=cList[i];