mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Putting Jar versions from most recent to oldest
This commit is contained in:
parent
cb1679806e
commit
52297829df
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user