This commit is contained in:
Aevann1 2022-01-03 13:05:25 +02:00
parent 55f442b5d4
commit c61fb42611
4 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ function sort_table(n) {
var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0;
table = document.getElementById("sortable_table");
switching = true;
dir = "asc";
dir = "desc";
while (switching) {
switching = false;
rows = table.rows;