clean
This commit is contained in:
parent
399c6749c8
commit
3c5f2279a9
30
js/main.js
30
js/main.js
|
|
@ -264,33 +264,3 @@ function updateoutput() {
|
|||
}
|
||||
})
|
||||
}
|
||||
|
||||
function sortUnorderedList(ul, sortDescending) {
|
||||
if (typeof ul == "string")
|
||||
ul = document.getElementById(ul);
|
||||
|
||||
// Idiot-proof, remove if you want
|
||||
if (!ul) {
|
||||
alert("The UL object is null!");
|
||||
return;
|
||||
}
|
||||
|
||||
// Get the list items and setup an array for sorting
|
||||
var lis = ul.getElementsByTagName("LI");
|
||||
var vals = [];
|
||||
|
||||
// Populate the array
|
||||
for (var i = 0, l = lis.length; i < l; i++)
|
||||
vals.push(lis[i].innerHTML);
|
||||
|
||||
// Sort it
|
||||
vals.sort();
|
||||
|
||||
// Sometimes you gotta DESC
|
||||
if (sortDescending)
|
||||
vals.reverse();
|
||||
|
||||
// Change the list on the page
|
||||
for (var i = 0, l = lis.length; i < l; i++)
|
||||
lis[i].innerHTML = vals[i];
|
||||
}
|
||||
Loading…
Reference in New Issue