mirror of
https://github.com/starshardstudio/peafowl.git
synced 2024-11-21 20:44:19 +00:00
5 lines
163 B
JavaScript
5 lines
163 B
JavaScript
window.onload = function() {
|
|
const tableId = document.querySelector("table").id
|
|
installSort(tableId)
|
|
sortTable(tableId, readRating, (a, b) => b - a)
|
|
}
|