diff --git a/js/main.js b/js/main.js index efcebc6..ca452ee 100644 --- a/js/main.js +++ b/js/main.js @@ -263,34 +263,4 @@ function updateoutput() { }, 300) } }) -} - -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]; } \ No newline at end of file